aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.h b/src/process.h
index db000464cb5..e89ba478187 100644
--- a/src/process.h
+++ b/src/process.h
@@ -187,7 +187,7 @@ pset_gnutls_cred_type (struct Lisp_Process *p, Lisp_Object val)
187 187
188/* True if we are about to fork off a synchronous process or if we 188/* True if we are about to fork off a synchronous process or if we
189 are waiting for it. */ 189 are waiting for it. */
190extern int synch_process_alive; 190extern bool synch_process_alive;
191 191
192/* Communicate exit status of sync process to from sigchld_handler 192/* Communicate exit status of sync process to from sigchld_handler
193 to Fcall_process. */ 193 to Fcall_process. */
@@ -222,7 +222,7 @@ extern void hold_keyboard_input (void);
222extern void unhold_keyboard_input (void); 222extern void unhold_keyboard_input (void);
223extern int kbd_on_hold_p (void); 223extern int kbd_on_hold_p (void);
224 224
225typedef void (*fd_callback)(int fd, void *data, int for_read); 225typedef void (*fd_callback) (int fd, void *data);
226 226
227extern void add_read_fd (int fd, fd_callback func, void *data); 227extern void add_read_fd (int fd, fd_callback func, void *data);
228extern void delete_read_fd (int fd); 228extern void delete_read_fd (int fd);