mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-12-16 00:01:37 -05:00
Formerly job.c.~68~
This commit is contained in:
parent
16d81de018
commit
ecfe56b932
6
job.c
6
job.c
@ -257,7 +257,13 @@ reap_children (block, err)
|
|||||||
pid = wait (&status);
|
pid = wait (&status);
|
||||||
|
|
||||||
if (pid < 0)
|
if (pid < 0)
|
||||||
|
{
|
||||||
|
#ifdef EINTR
|
||||||
|
if (errno == EINTR)
|
||||||
|
continue;
|
||||||
|
#endif
|
||||||
pfatal_with_name ("wait");
|
pfatal_with_name ("wait");
|
||||||
|
}
|
||||||
else if (pid == 0)
|
else if (pid == 0)
|
||||||
/* No local children. */
|
/* No local children. */
|
||||||
break;
|
break;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user