aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c7
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. */
2727Lisp_Object make_serial_process_unwind (Lisp_Object proc) 2727static Lisp_Object
2728make_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)
5476jmp_buf send_process_frame; 5477jmp_buf send_process_frame;
5477Lisp_Object process_sent_to; 5478Lisp_Object process_sent_to;
5478 5479
5479SIGTYPE 5480static SIGTYPE
5480send_process_trap (int ignore) 5481send_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
6388SIGTYPE 6389static SIGTYPE
6389sigchld_handler (int signo) 6390sigchld_handler (int signo)
6390{ 6391{
6391 int old_errno = errno; 6392 int old_errno = errno;