Help for this page

Select Code to Download


  1. or download this
        use POSIX ":sys_wait_h";
        #...
        do {
            $kid = waitpid(-1, WNOHANG);
        } until $kid > 0;
    
  2. or download this
    if (waitpid($child_pid, WNOHANG) > 0) {
       ... the child just died ...
    }