add/re-enable at_wini debug output
[minix3.git] / servers / is / glo.h
blob718e0e3d07a9d2f729920934d12ea85001605882
1 /* Global variables. */
3 /* Parameters needed to keep diagnostics at IS. */
4 #define DIAG_BUF_SIZE 1024
5 extern char diag_buf[DIAG_BUF_SIZE]; /* buffer for messages */
6 extern int diag_next; /* next index to be written */
7 extern int diag_size; /* size of all messages */
9 /* Flag to indicate system-wide panic. */
10 extern int sys_panic; /* if set, shutdown can be done */
12 /* The parameters of the call are kept here. */
13 extern message m_in; /* the input message itself */
14 extern message m_out; /* the output message used for reply */
15 extern int who_e; /* caller's proc number */
16 extern int callnr; /* system call number */
17 extern int dont_reply; /* normally 0; set to 1 to inhibit reply */