/* ISC license. */ #include #include #include #include pid_t waitpid_nointr (pid_t pid, int *wstat, int flags) { register pid_t r ; do r = waitpid(pid, wstat, flags) ; while ((r == (pid_t)-1) && (errno == EINTR)) ; return r ; }