Help for this page

Select Code to Download


  1. or download this
    while (my $t = shift(@ready)){
         $shash{$t}{'data'} = shift @to_be_processed;
         $shash{$t}{'go'} = 1; 
    }
    
  2. or download this
    my @tready = @ready;
    @ready();
    ...
         $shash{$t}{'data'} = shift @to_be_processed;
         $shash{$t}{'go'} = 1; 
    }