blob: 838359f0279444cd5bfeee02224897b134454192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ISC license. */
#include <sys/wait.h>
#include <errno.h>
#include <skalibs/djbunix.h>
pid_t waitpid_nointr (pid_t pid, int *wstat, int flags)
{
pid_t r ;
do r = waitpid(pid, wstat, flags) ;
while ((r == (pid_t)-1) && (errno == EINTR)) ;
return r ;
}
|