. service tells you which device it couldn't stat
[minix3.git] / servers / pm / glo.h
blob6485c1679a217cf28cf0d20c3ec42eb25d379310
1 /* EXTERN should be extern except in table.c */
2 #ifdef _TABLE
3 #undef EXTERN
4 #define EXTERN
5 #endif
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 */
13 /* Misc.c */
14 extern struct utsname uts_val; /* uname info */
16 /* The parameters of the call are kept here. */
17 EXTERN message m_in; /* the incoming message itself is kept here. */
18 EXTERN int who_p, who_e; /* caller's proc number, endpoint */
19 EXTERN int call_nr; /* system call number */
21 extern _PROTOTYPE (int (*call_vec[]), (void) ); /* system call handlers */
22 extern char core_name[]; /* file name where core images are produced */
23 EXTERN sigset_t core_sset; /* which signals cause core images */
24 EXTERN sigset_t ign_sset; /* which signals are by default ignored */
26 EXTERN time_t boottime; /* time when the system was booted (for
27 * reporting to FS)
29 EXTERN int report_reboot; /* During reboot to report to FS that we are
30 * rebooting.
32 EXTERN int abort_flag;
33 EXTERN char monitor_code[256];