diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 06fc918cf54..6eae5166465 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -7092,7 +7092,8 @@ catch_child_signal (void) | |||
| 7092 | emacs_sigaction_init (&action, deliver_child_signal); | 7092 | emacs_sigaction_init (&action, deliver_child_signal); |
| 7093 | block_child_signal (&oldset); | 7093 | block_child_signal (&oldset); |
| 7094 | sigaction (SIGCHLD, &action, &old_action); | 7094 | sigaction (SIGCHLD, &action, &old_action); |
| 7095 | eassert (! (old_action.sa_flags & SA_SIGINFO)); | 7095 | eassert (old_action.sa_handler == SIG_DFL || old_action.sa_handler == SIG_IGN |
| 7096 | || ! (old_action.sa_flags & SA_SIGINFO)); | ||
| 7096 | 7097 | ||
| 7097 | if (old_action.sa_handler != deliver_child_signal) | 7098 | if (old_action.sa_handler != deliver_child_signal) |
| 7098 | lib_child_handler | 7099 | lib_child_handler |