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 55a572117c6..ce3d2e702cc 100644
--- a/src/process.h
+++ b/src/process.h
@@ -184,7 +184,7 @@ pset_gnutls_cred_type (struct Lisp_Process *p, Lisp_Object val)
184 184
185/* True if we are about to fork off a synchronous process or if we 185/* True if we are about to fork off a synchronous process or if we
186 are waiting for it. */ 186 are waiting for it. */
187extern int synch_process_alive; 187extern bool synch_process_alive;
188 188
189/* Communicate exit status of sync process to from sigchld_handler 189/* Communicate exit status of sync process to from sigchld_handler
190 to Fcall_process. */ 190 to Fcall_process. */
@@ -219,7 +219,7 @@ extern void hold_keyboard_input (void);
219extern void unhold_keyboard_input (void); 219extern void unhold_keyboard_input (void);
220extern int kbd_on_hold_p (void); 220extern int kbd_on_hold_p (void);
221 221
222typedef void (*fd_callback)(int fd, void *data, int for_read); 222typedef void (*fd_callback) (int fd, void *data);
223 223
224extern void add_read_fd (int fd, fd_callback func, void *data); 224extern void add_read_fd (int fd, fd_callback func, void *data);
225extern void delete_read_fd (int fd); 225extern void delete_read_fd (int fd);