blob: 02dcd42158d55cfd8bb91862a692b528738d8327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#include <sys/types.h>
#include <sys/wait.h>
#include <errno.h>
#include <skalibs/djbunix.h>
pid_t wait_nointr (int *wstat)
{
register pid_t r ;
do
r = wait(wstat) ;
while ((r == (pid_t)-1) && (errno == EINTR)) ;
return r ;
}
|