removed some verbose messages
[minix3.git] / kernel / kernel.h
blob6ddc1f18fe76b178cb1026fca11fd03090f4c7d9
1 #ifndef KERNEL_H
2 #define KERNEL_H
4 /* This is the master header for the kernel. It includes some other files
5 * and defines the principal constants.
6 */
7 #define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
8 #define _MINIX 1 /* tell headers to include MINIX stuff */
9 #define _SYSTEM 1 /* tell headers that this is the kernel */
11 /* The following are so basic, all the *.c files get them automatically. */
12 #include <minix/config.h> /* global configuration, MUST be first */
13 #include <ansi.h> /* C style: ANSI or K&R, MUST be second */
14 #include <sys/types.h> /* general system types */
15 #include <minix/const.h> /* MINIX specific constants */
16 #include <minix/type.h> /* MINIX specific types, e.g. message */
17 #include <minix/ipc.h> /* MINIX run-time system */
18 #include <timers.h> /* watchdog timer management */
19 #include <errno.h> /* return codes and error numbers */
21 /* Important kernel header files. */
22 #include "config.h" /* configuration, MUST be first */
23 #include "const.h" /* constants, MUST be second */
24 #include "type.h" /* type definitions, MUST be third */
25 #include "proto.h" /* function prototypes */
26 #include "glo.h" /* global variables */
27 #include "ipc.h" /* IPC constants */
28 #include "profile.h" /* system profiling */
29 #include "debug.h" /* debugging, MUST be last kernel header */
31 #endif /* KERNEL_H */