Help for this page

Select Code to Download


  1. or download this
    foreach $host (@syshosts)                
    {    
        threads->new(\&locateSysHost_Parallel, $host);
    }                        
    (threads->list)[0]->join while threads->list;
    
  2. or download this
    foreach $host (@syshosts)                
    {    
        threads->new(\&locateSysHost_Parallel, $host)->join;
    }