Rev | Line | |
---|
[9] | 1 | /* EXTERN should be extern except in table.c */
|
---|
| 2 | #ifdef _TABLE
|
---|
| 3 | #undef EXTERN
|
---|
| 4 | #define EXTERN
|
---|
| 5 | #endif
|
---|
| 6 |
|
---|
| 7 | /* Global variables. */
|
---|
| 8 | EXTERN struct mproc *mp; /* ptr to 'mproc' slot of current process */
|
---|
| 9 | EXTERN int procs_in_use; /* how many processes are marked as IN_USE */
|
---|
| 10 | EXTERN char monitor_params[128*sizeof(char *)]; /* boot monitor parameters */
|
---|
| 11 | EXTERN struct kinfo kinfo; /* kernel information */
|
---|
| 12 |
|
---|
| 13 | /* The parameters of the call are kept here. */
|
---|
| 14 | EXTERN message m_in; /* the incoming message itself is kept here. */
|
---|
| 15 | EXTERN int who_p, who_e; /* caller's proc number, endpoint */
|
---|
| 16 | EXTERN int call_nr; /* system call number */
|
---|
| 17 |
|
---|
| 18 | extern _PROTOTYPE (int (*call_vec[]), (void) ); /* system call handlers */
|
---|
| 19 | extern char core_name[]; /* file name where core images are produced */
|
---|
| 20 | EXTERN sigset_t core_sset; /* which signals cause core images */
|
---|
| 21 | EXTERN sigset_t ign_sset; /* which signals are by default ignored */
|
---|
| 22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.