diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/vmsproc.h	Mon Aug 13 08:45:50 2007 +0200
@@ -0,0 +1,23 @@
+/*
+    Structure for storing VMS specific information for an EMACS process
+
+    We use the event flags 1-23 for processes, keyboard input and timer
+*/
+
+/* Synched up with: Not synched with FSF. */
+
+/*
+    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;