Re: perl threads problems using 20040720 snapshot

2004-08-22 Thread Yitzchak Scott-Thoennes
On Sun, Jul 25, 2004 at 01:51:08PM -0700, Yitzchak Scott-Thoennes wrote: > On Wed, Jul 21, 2004 at 12:18:36AM -0700, Yitzchak Scott-Thoennes wrote: > > When using recent snapshots, perl threads have some problems. For example: > > > > $ perl -we'use threads; threads->new( sub { print "go" } )->j

Re: perl threads problems using 20040720 snapshot

2004-07-25 Thread Yitzchak Scott-Thoennes
On Wed, Jul 21, 2004 at 12:18:36AM -0700, Yitzchak Scott-Thoennes wrote: > When using recent snapshots, perl threads have some problems. For example: > > $ perl -we'use threads; threads->new( sub { print "go" } )->join(); <>; print > "done"'; > > Here, when the thread exits (after printing go),

Re: GetVolumeInformation() failed (Was Re: perl threads problems using 20040720 snapshot)

2004-07-21 Thread Igor Pechtchanski
On Wed, 21 Jul 2004, Yitzchak Scott-Thoennes wrote: > [snip] > (Note: in getting the cygcheck output below, I got this message to stderr: > cygcheck: dump_sysinfo: GetVolumeInformation() failed: 1231) FYI: $ net helpmsg 1231 The network location cannot be reached. For information about network t

perl threads problems using 20040720 snapshot

2004-07-21 Thread Yitzchak Scott-Thoennes
When using recent snapshots, perl threads have some problems. For example: $ perl -we'use threads; threads->new( sub { print "go" } )->join(); <>; print "done"'; Here, when the thread exits (after printing go), the whole process also exits, instead of waiting for terminal input and printing done