Help for this page

Select Code to Download


  1. or download this
    sub pullDataFromDbWithDirectory {
        my $_dir = $_[0];
    ...
       push(@IDLE_THREADS,$ithread);
    
    }
    
  2. or download this
    my @threads = map threads->create(\&doOperation), 1 .. $maxNumberOfPar
    +allelJobs;
    pullDataFromDbWithDirectory($directory);
    ...
    $_->join for @threads;
    
    printData();