- or download this
my @threads = map threads->new( \&processrefsthread, $Q ), 1 .. $T;
- or download this
sub threadProc {
my $code = shift;
...
}
my @threads = map threads->new( \&threadProc, \&processrefsthread, $Q
+), 1 .. $T;
- or download this
sub processrefsthread {
my $Q = shift;
...
}
tprint 'Ending';
}
- or download this
C:\test>1056140-buk
Useless use of division (/) in void context at C:\test\1056140-buk.p
...
; retrying
[1] Starting
...
- or download this
my $Q - ...;
...
...
}
}