Mercurial > emacs
diff src/vmsproc.h @ 484:3165b2697c78
entered into RCS
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 13 Jan 1992 21:48:03 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/vmsproc.h Mon Jan 13 21:48:03 1992 +0000 @@ -0,0 +1,21 @@ +/* + Structure for storing VMS specific information for an EMACS process + + We use the event flags 1-23 for processes, keyboard input and timer +*/ + +/* + Same as MAXDESC in process.c +*/ +#define MAX_EVENT_FLAGS 23 + +typedef struct { + char inputBuffer[1024]; + short inputChan; + short outputChan; + short busy; + int pid; + int eventFlag; + int exitStatus; + short iosb[4]; +} VMS_PROC_STUFF;