1 | #ifndef GLO_H
|
---|
2 | #define GLO_H
|
---|
3 |
|
---|
4 | /* Global variables used in the kernel. This file contains the declarations;
|
---|
5 | * storage space for the variables is allocated in table.c, because EXTERN is
|
---|
6 | * defined as extern unless the _TABLE definition is seen. We rely on the
|
---|
7 | * compiler's default initialization (0) for several global variables.
|
---|
8 | */
|
---|
9 | #ifdef _TABLE
|
---|
10 | #undef EXTERN
|
---|
11 | #define EXTERN
|
---|
12 | #endif
|
---|
13 |
|
---|
14 | #include <minix/config.h>
|
---|
15 | #include "config.h"
|
---|
16 |
|
---|
17 | /* Variables relating to shutting down MINIX. */
|
---|
18 | EXTERN char kernel_exception; /* TRUE after system exceptions */
|
---|
19 | EXTERN char shutdown_started; /* TRUE after shutdowns / reboots */
|
---|
20 |
|
---|
21 | /* Kernel information structures. This groups vital kernel information. */
|
---|
22 | EXTERN phys_bytes aout; /* address of a.out headers */
|
---|
23 | EXTERN struct kinfo kinfo; /* kernel information for users */
|
---|
24 | EXTERN struct machine machine; /* machine information for users */
|
---|
25 | EXTERN struct kmessages kmess; /* diagnostic messages in kernel */
|
---|
26 | EXTERN struct randomness krandom; /* gather kernel random information */
|
---|
27 | EXTERN struct loadinfo kloadinfo; /* status of load average */
|
---|
28 |
|
---|
29 | /* Process scheduling information and the kernel reentry count. */
|
---|
30 | EXTERN struct proc *prev_ptr; /* previously running process */
|
---|
31 | EXTERN struct proc *proc_ptr; /* pointer to currently running process */
|
---|
32 | EXTERN struct proc *next_ptr; /* next process to run after restart() */
|
---|
33 | EXTERN struct proc *bill_ptr; /* process to bill for clock ticks */
|
---|
34 | EXTERN char k_reenter; /* kernel reentry count (entry count less 1) */
|
---|
35 | EXTERN unsigned lost_ticks; /* clock ticks counted outside clock task */
|
---|
36 |
|
---|
37 | #if (CHIP == INTEL)
|
---|
38 |
|
---|
39 | /* Interrupt related variables. */
|
---|
40 | EXTERN irq_hook_t irq_hooks[NR_IRQ_HOOKS]; /* hooks for general use */
|
---|
41 | EXTERN irq_hook_t *irq_handlers[NR_IRQ_VECTORS];/* list of IRQ handlers */
|
---|
42 | EXTERN int irq_actids[NR_IRQ_VECTORS]; /* IRQ ID bits active */
|
---|
43 | EXTERN int irq_use; /* map of all in-use irq's */
|
---|
44 |
|
---|
45 | /* Miscellaneous. */
|
---|
46 | EXTERN reg_t mon_ss, mon_sp; /* boot monitor stack */
|
---|
47 | EXTERN int mon_return; /* true if we can return to monitor */
|
---|
48 | EXTERN int do_serial_debug;
|
---|
49 | EXTERN int who_e, who_p; /* message source endpoint and proc */
|
---|
50 |
|
---|
51 | /* VM */
|
---|
52 | EXTERN phys_bytes vm_base;
|
---|
53 | EXTERN phys_bytes vm_size;
|
---|
54 | EXTERN phys_bytes vm_mem_high;
|
---|
55 |
|
---|
56 | /* Variables that are initialized elsewhere are just extern here. */
|
---|
57 | extern struct boot_image image[]; /* system image processes */
|
---|
58 | extern char *t_stack[]; /* task stack space */
|
---|
59 | extern struct segdesc_s gdt[]; /* global descriptor table */
|
---|
60 |
|
---|
61 | EXTERN _PROTOTYPE( void (*level0_func), (void) );
|
---|
62 | #endif /* (CHIP == INTEL) */
|
---|
63 |
|
---|
64 | #if (CHIP == M68000)
|
---|
65 | /* M68000 specific variables go here. */
|
---|
66 | #endif
|
---|
67 |
|
---|
68 | #endif /* GLO_H */
|
---|