blob: f6faddf6a3e7336e0a55f46fcefa666651648499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
|