Subject: | Undefined subroutine &Dos::CLONE |
Activ Perl v. 5.12.4
Thread v. 1.85
If I try to use Thread in Windows XP, the following error:
"Thread 1 terminated abnormally: Undefined subroutine &Dos::CLONE
called... "
my program text
use strict;
use Thread qw(:DEFAULT async yield);
my $t = Thread->new(\&start_sub);
$t->join;
sub start_sub
{
print "hello world \n";
}
In what may be the problem?