diff options
Diffstat (limited to 'manual')
-rw-r--r-- | manual/process.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manual/process.texi b/manual/process.texi index b1f5ef4..e105342 100644 --- a/manual/process.texi +++ b/manual/process.texi @@ -608,8 +608,8 @@ indicates that at least one child process has terminated. void sigchld_handler (int signum) @{ - int pid; - int status; + int pid, status, serrno; + serrno = errno; while (1) @{ pid = waitpid (WAIT_ANY, &status, WNOHANG); @@ -622,6 +622,7 @@ sigchld_handler (int signum) break; notice_termination (pid, status); @} + errno = serrno; @} @end group @end smallexample |