diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index ec07e95c34a..ad4cf8f8546 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5104,6 +5104,7 @@ Lisp_Object process_sent_to; | |||
| 5104 | SIGTYPE | 5104 | SIGTYPE |
| 5105 | send_process_trap () | 5105 | send_process_trap () |
| 5106 | { | 5106 | { |
| 5107 | SIGNAL_THREAD_CHECK (SIGPIPE); | ||
| 5107 | #ifdef BSD4_1 | 5108 | #ifdef BSD4_1 |
| 5108 | sigrelse (SIGPIPE); | 5109 | sigrelse (SIGPIPE); |
| 5109 | sigrelse (SIGALRM); | 5110 | sigrelse (SIGALRM); |
| @@ -6146,6 +6147,8 @@ sigchld_handler (signo) | |||
| 6146 | register struct Lisp_Process *p; | 6147 | register struct Lisp_Process *p; |
| 6147 | extern EMACS_TIME *input_available_clear_time; | 6148 | extern EMACS_TIME *input_available_clear_time; |
| 6148 | 6149 | ||
| 6150 | SIGNAL_THREAD_CHECK (signo); | ||
| 6151 | |||
| 6149 | #ifdef BSD4_1 | 6152 | #ifdef BSD4_1 |
| 6150 | extern int sigheld; | 6153 | extern int sigheld; |
| 6151 | sigheld |= sigbit (SIGCHLD); | 6154 | sigheld |= sigbit (SIGCHLD); |