Help for this page

Select Code to Download


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