diff options
| author | Paul Eggert | 2011-03-16 22:18:33 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-16 22:18:33 -0700 |
| commit | b766f86726fc2828a035cb8db149598a3a84de96 (patch) | |
| tree | 6b5d450e3d181a461e2e6f32c2e10bc02a3baa40 /src/process.c | |
| parent | be02381c5db4236f51f474726003d5a97bbc61f7 (diff) | |
| download | emacs-b766f86726fc2828a035cb8db149598a3a84de96.tar.gz emacs-b766f86726fc2828a035cb8db149598a3a84de96.zip | |
* process.c (make_serial_process_unwind, send_process_trap):
(sigchld_handler): Now static.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c index ab340867150..c9b420ab2ae 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2724,7 +2724,8 @@ usage: (serial-process-configure &rest ARGS) */) | |||
| 2724 | } | 2724 | } |
| 2725 | 2725 | ||
| 2726 | /* Used by make-serial-process to recover from errors. */ | 2726 | /* Used by make-serial-process to recover from errors. */ |
| 2727 | Lisp_Object make_serial_process_unwind (Lisp_Object proc) | 2727 | static Lisp_Object |
| 2728 | make_serial_process_unwind (Lisp_Object proc) | ||
| 2728 | { | 2729 | { |
| 2729 | if (!PROCESSP (proc)) | 2730 | if (!PROCESSP (proc)) |
| 2730 | abort (); | 2731 | abort (); |
| @@ -5476,7 +5477,7 @@ read_process_output (Lisp_Object proc, register int channel) | |||
| 5476 | jmp_buf send_process_frame; | 5477 | jmp_buf send_process_frame; |
| 5477 | Lisp_Object process_sent_to; | 5478 | Lisp_Object process_sent_to; |
| 5478 | 5479 | ||
| 5479 | SIGTYPE | 5480 | static SIGTYPE |
| 5480 | send_process_trap (int ignore) | 5481 | send_process_trap (int ignore) |
| 5481 | { | 5482 | { |
| 5482 | SIGNAL_THREAD_CHECK (SIGPIPE); | 5483 | SIGNAL_THREAD_CHECK (SIGPIPE); |
| @@ -6385,7 +6386,7 @@ process has been transmitted to the serial port. */) | |||
| 6385 | indirectly; if it does, that is a bug */ | 6386 | indirectly; if it does, that is a bug */ |
| 6386 | 6387 | ||
| 6387 | #ifdef SIGCHLD | 6388 | #ifdef SIGCHLD |
| 6388 | SIGTYPE | 6389 | static SIGTYPE |
| 6389 | sigchld_handler (int signo) | 6390 | sigchld_handler (int signo) |
| 6390 | { | 6391 | { |
| 6391 | int old_errno = errno; | 6392 | int old_errno = errno; |