aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
authorKenichi Handa2012-08-28 22:44:20 +0900
committerKenichi Handa2012-08-28 22:44:20 +0900
commit4eb4de01df384be9b8d811f7ab476eeb37ece748 (patch)
treed04f0dae31dd8b533a0c3cd738430841ce7ebb84 /src/process.h
parentfabc1281e9cde34ff9a19d843316d2ceca8647ad (diff)
parent4f2daf31078e2cc059710e129dffe0beed8fc7c2 (diff)
downloademacs-4eb4de01df384be9b8d811f7ab476eeb37ece748.tar.gz
emacs-4eb4de01df384be9b8d811f7ab476eeb37ece748.zip
merge trunk
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);