view src/vmsproc.h @ 24111:212dc05acd10

Checking in some changes made by rms: Added +A web-based front end for @code{mon}, so that it can do the +job of Big Brother (which is not free software). Rearranged a few things. Commented out the speech-generation program that Chris Hofstader is working on.
author Joel N. Weber II <devnull@gnu.org>
date Mon, 18 Jan 1999 03:24:53 +0000
parents 3165b2697c78
children
line wrap: on
line source

/*
    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;