source: trunk/minix/servers/is/glo.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 698 bytes
Line 
1/* Global variables. */
2
3/* Parameters needed to keep diagnostics at IS. */
4#define DIAG_BUF_SIZE 1024
5extern char diag_buf[DIAG_BUF_SIZE]; /* buffer for messages */
6extern int diag_next; /* next index to be written */
7extern int diag_size; /* size of all messages */
8
9/* Flag to indicate system-wide panic. */
10extern int sys_panic; /* if set, shutdown can be done */
11
12/* The parameters of the call are kept here. */
13extern message m_in; /* the input message itself */
14extern message m_out; /* the output message used for reply */
15extern int who_e; /* caller's proc number */
16extern int callnr; /* system call number */
17extern int dont_reply; /* normally 0; set to 1 to inhibit reply */
18
Note: See TracBrowser for help on using the repository browser.