From: Richard M. Stallman Date: Wed, 2 Mar 1994 23:37:02 +0000 (+0000) Subject: (chan_process, Vprocess_alist): Declared. X-Git-Tag: emacs-19.34~9687 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fcf848767b53b78bffdd3ff57b3dfa81f0baf65a;p=emacs.git (chan_process, Vprocess_alist): Declared. --- 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;