aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/process.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h
index 2ac7b59c6b7..47bf3776611 100644
--- a/src/process.h
+++ b/src/process.h
@@ -75,6 +75,12 @@ struct Lisp_Process
75 75
76#define ChannelMask(n) (1<<(n)) 76#define ChannelMask(n) (1<<(n))
77 77
78/* Indexed by descriptor, gives the process (if any) for that descriptor. */
79extern Lisp_Object chan_process[MAXDESC];
80
81/* Alist of elements (NAME . PROCESS). */
82extern Lisp_Object Vprocess_alist;
83
78/* True iff we are about to fork off a synchronous process or if we 84/* True iff we are about to fork off a synchronous process or if we
79 are waiting for it. */ 85 are waiting for it. */
80extern int synch_process_alive; 86extern int synch_process_alive;