diff options
| author | Richard M. Stallman | 1994-03-02 23:37:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-03-02 23:37:02 +0000 |
| commit | fcf848767b53b78bffdd3ff57b3dfa81f0baf65a (patch) | |
| tree | 6dcffe770930093c534a3694d7cdbc6bcf804073 /src/process.h | |
| parent | 41f3aa98d10576f68df92c4bdecb9d20368be86e (diff) | |
| download | emacs-fcf848767b53b78bffdd3ff57b3dfa81f0baf65a.tar.gz emacs-fcf848767b53b78bffdd3ff57b3dfa81f0baf65a.zip | |
(chan_process, Vprocess_alist): Declared.
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 6 |
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. */ | ||
| 79 | extern Lisp_Object chan_process[MAXDESC]; | ||
| 80 | |||
| 81 | /* Alist of elements (NAME . PROCESS). */ | ||
| 82 | extern 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. */ |
| 80 | extern int synch_process_alive; | 86 | extern int synch_process_alive; |