diff options
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 4 |
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. */ |
| 190 | extern int synch_process_alive; | 190 | extern 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); | |||
| 222 | extern void unhold_keyboard_input (void); | 222 | extern void unhold_keyboard_input (void); |
| 223 | extern int kbd_on_hold_p (void); | 223 | extern int kbd_on_hold_p (void); |
| 224 | 224 | ||
| 225 | typedef void (*fd_callback)(int fd, void *data, int for_read); | 225 | typedef void (*fd_callback) (int fd, void *data); |
| 226 | 226 | ||
| 227 | extern void add_read_fd (int fd, fd_callback func, void *data); | 227 | extern void add_read_fd (int fd, fd_callback func, void *data); |
| 228 | extern void delete_read_fd (int fd); | 228 | extern void delete_read_fd (int fd); |