comparison src/vmsproc.h @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:376386a54a3c
1 /*
2 Structure for storing VMS specific information for an EMACS process
3
4 We use the event flags 1-23 for processes, keyboard input and timer
5 */
6
7 /* Synched up with: Not synched with FSF. */
8
9 /*
10 Same as MAXDESC in process.c
11 */
12 #define MAX_EVENT_FLAGS 23
13
14 typedef struct {
15 char inputBuffer[1024];
16 short inputChan;
17 short outputChan;
18 short busy;
19 int pid;
20 int eventFlag;
21 int exitStatus;
22 short iosb[4];
23 } VMS_PROC_STUFF;