=over =item waitpid PID,FLAGS X Waits for a particular child process to terminate and returns the pid of the deceased process, or C<-1> if there is no such child process. A non-blocking wait (with L> in FLAGS) can return 0 if there are child processes matching PID but none have terminated yet. The status is returned in L|perlvar/$?> and L|perlvar/${^CHILD_ERROR_NATIVE}>. A PID of C<0> indicates to wait for any child process whose process group ID is equal to that of the current process. A PID of less than C<-1> indicates to wait for any child process whose process group ID is equal to -PID. A PID of C<-1> indicates to wait for any child process. If you say use POSIX ":sys_wait_h"; my $kid; do { $kid = waitpid(-1, WNOHANG); } while $kid > 0; or 1 while waitpid(-1, WNOHANG) > 0; then you can do a non-blocking wait for all pending zombie processes (see L). Non-blocking wait is available on machines supporting either the L or L syscalls. However, waiting for a particular pid with FLAGS of C<0> is implemented everywhere. (Perl emulates the system call by remembering the status values of processes that have exited but have not been harvested by the Perl script yet.) Note that on some systems, a return value of C<-1> could mean that child processes are being automatically reaped. See L for details, and for other examples. Portability issues: L. =back