Mercurial > hg > xemacs-beta
annotate src/vmsproc.h @ 108:360340f9fd5f r20-1b6
Import from CVS: tag r20-1b6
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:18:39 +0200 |
parents | 376386a54a3c |
children |
rev | line source |
---|---|
0 | 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; |