Help for this page

Select Code to Download


  1. or download this
    sub reapchild
    {
        while (waitpid(-1, &WNOHANG) > 0)
    ...
            pop @pids;
        }
    }
    
  2. or download this
    sub reapchild
    {
        my ($pid, $index);
    ...
            warn "Unexpected $pid returned!\n";
        }
    }