At 12:46 +0100 1/13/03, Teifke Sascha ZFF wrote:
Here is the Output of Perl -V
###
Summary of my perl5 (revision 5 version 6 subversion 1) configuration:
Ah... I don't think ithreads were really supported in 5.6.1, maybe
on Windows, but that's out of my league really. My e
Here is the exact program:
===
#!c:/perl/bin/perl.exe -w
use threads;
use strict;
my $thread1 = threads->create ( \&Test, "1" );
my $thread2 = threads->create ( \&Test, "2" );
$thread1->join;
$thread2->join;
exit;
sub Test {
my $test = shift;
print "\nHello Wor
At 09:39 +0100 1/13/03, Teifke Sascha ZFF wrote:
using this code, I got the following Error:
"Can't undef active subroutine during global destruction."
Under non-Windows systems you would probably see something like:
"A thread exited while X other threads were still running."
which may be mor
Hello List,
using this code, I got the following Error:
"Can't undef active subroutine during global destruction."
Has anyone a good thread-beginners example I could use to get started?
What I want to do is to write a win32 program that needs to call a sub for
every element of a list provided.