summaryrefslogtreecommitdiff
path: root/src/process.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-03-02 23:37:02 +0000
committerRichard M. Stallman <rms@gnu.org>1994-03-02 23:37:02 +0000
commit78268cf8ec1564f90e2bf5610df834ba19fdb4c3 (patch)
treefb77af30a9e4cf5ffe89a8af4ef2a08e4d9789f8 /src/process.h
parent293e9f8b5a8f8a763ca607d7046d13346bce1a02 (diff)
downloademacs-78268cf8ec1564f90e2bf5610df834ba19fdb4c3.tar.gz
(chan_process, Vprocess_alist): Declared.
Diffstat (limited to 'src/process.h')
-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
#define ChannelMask(n) (1<<(n))
+/* Indexed by descriptor, gives the process (if any) for that descriptor. */
+extern Lisp_Object chan_process[MAXDESC];
+
+/* Alist of elements (NAME . PROCESS). */
+extern Lisp_Object Vprocess_alist;
+
/* True iff we are about to fork off a synchronous process or if we
are waiting for it. */
extern int synch_process_alive;