- or download this
while( @arrayRunningThreads ){
my @keepers;
...
@arrayRunningThreads = @keepers;
}
- or download this
while( @arrayRunningThreads ){
my @keepers;
for my $thread ( @arrayRunningThreads ){
...
}
@arrayRunningThreads = @keepers;
}
- or download this
for my $thread ( @arrayRunningThreads ){
$thread->join;
}