source: branches/minix3-book/kernel/glo.h@ 4

Last change on this file since 4 was 4, checked in by Mattia Monga, 13 years ago

Importazione sorgenti libro

File size: 2.2 KB
Line 
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. */
18EXTERN char kernel_exception; /* TRUE after system exceptions */
19EXTERN char shutdown_started; /* TRUE after shutdowns / reboots */
20
21/* Kernel information structures. This groups vital kernel information. */
22EXTERN phys_bytes aout; /* address of a.out headers */
23EXTERN struct kinfo kinfo; /* kernel information for users */
24EXTERN struct machine machine; /* machine information for users */
25EXTERN struct kmessages kmess; /* diagnostic messages in kernel */
26EXTERN struct randomness krandom; /* gather kernel random information */
27
28/* Process scheduling information and the kernel reentry count. */
29EXTERN struct proc *prev_ptr; /* previously running process */
30EXTERN struct proc *proc_ptr; /* pointer to currently running process */
31EXTERN struct proc *next_ptr; /* next process to run after restart() */
32EXTERN struct proc *bill_ptr; /* process to bill for clock ticks */
33EXTERN char k_reenter; /* kernel reentry count (entry count less 1) */
34EXTERN unsigned lost_ticks; /* clock ticks counted outside clock task */
35
36/* Interrupt related variables. */
37EXTERN irq_hook_t irq_hooks[NR_IRQ_HOOKS]; /* hooks for general use */
38EXTERN irq_hook_t *irq_handlers[NR_IRQ_VECTORS];/* list of IRQ handlers */
39EXTERN int irq_actids[NR_IRQ_VECTORS]; /* IRQ ID bits active */
40EXTERN int irq_use; /* map of all in-use irq's */
41
42/* Miscellaneous. */
43EXTERN reg_t mon_ss, mon_sp; /* boot monitor stack */
44EXTERN int mon_return; /* true if we can return to monitor */
45
46/* Variables that are initialized elsewhere are just extern here. */
47extern struct boot_image image[]; /* system image processes */
48extern char *t_stack[]; /* task stack space */
49extern struct segdesc_s gdt[]; /* global descriptor table */
50
51EXTERN _PROTOTYPE( void (*level0_func), (void) );
52
53#endif /* GLO_H */
54
55
56
57
58
Note: See TracBrowser for help on using the repository browser.