Rev | Line | |
---|
[9] | 1 | /* Global variables. */
|
---|
| 2 |
|
---|
| 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 */
|
---|
| 8 |
|
---|
| 9 | /* Flag to indicate system-wide panic. */
|
---|
| 10 | extern int sys_panic; /* if set, shutdown can be done */
|
---|
| 11 |
|
---|
| 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 */
|
---|
| 18 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.