Help for this page

Select Code to Download


  1. or download this
    sub reapchild
    {
        # already using POSIX, right??
        0 while waitpid(-1, &WNOHANG) > 0;
    }
    $SIG{CHLD} = \&reapchild;