Formerly job.c.~68~

This commit is contained in:
Roland McGrath 1992-05-14 20:42:25 +00:00
parent 16d81de018
commit ecfe56b932

8
job.c
View file

@ -257,7 +257,13 @@ reap_children (block, err)
pid = wait (&status);
if (pid < 0)
pfatal_with_name ("wait");
{
#ifdef EINTR
if (errno == EINTR)
continue;
#endif
pfatal_with_name ("wait");
}
else if (pid == 0)
/* No local children. */
break;