@@ -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
}
else if (pid == 0)
/* No local children. */
break;
The note is not visible to the blocked user.