Steven Hartland wrote: > [test] > #!/bin/perl -w > > use warnings; > use strict; > use threads; > > print STDERR "Testing threads...\n"; > my $thrd = threads->create( \&dothread ); > $thrd->join(); > print STDERR "Testing done\n"; > > sub dothread { print STDERR "I'm a thread!\n" } > [/test]
WFM with perl 5.10.0 on both 1.5 and 1.7. cheers, DaveK -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple