Help for this page

Select Code to Download


  1. or download this
    sub cleanup {
        while ((my $kpid = waitpid(-1,WNOHANG)) > 0) {
    ...
            $kidcount--;
        }
    }
    
  2. or download this
    while ( $kidcount > 0) {
      my $secs = sleep 10;
    ...
            print STDERR "\n";
      }
    }
    
  3. or download this
    sub killMyself {
      if ($waitcount > 6) {
    ...
      }
      $waitcount++;
    }