2005-07-14 17:12:12 +02:00
|
|
|
#ifndef KERNEL_H
|
|
|
|
#define KERNEL_H
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/* This is the master header for the kernel. It includes some other files
|
|
|
|
* and defines the principal constants.
|
|
|
|
*/
|
|
|
|
#define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
|
|
|
|
#define _MINIX 1 /* tell headers to include MINIX stuff */
|
|
|
|
#define _SYSTEM 1 /* tell headers that this is the kernel */
|
|
|
|
|
|
|
|
/* The following are so basic, all the *.c files get them automatically. */
|
|
|
|
#include <minix/config.h> /* global configuration, MUST be first */
|
|
|
|
#include <ansi.h> /* C style: ANSI or K&R, MUST be second */
|
|
|
|
#include <sys/types.h> /* general system types */
|
|
|
|
#include <minix/const.h> /* MINIX specific constants */
|
|
|
|
#include <minix/type.h> /* MINIX specific types, e.g. message */
|
|
|
|
#include <minix/ipc.h> /* MINIX run-time system */
|
|
|
|
#include <timers.h> /* watchdog timer management */
|
|
|
|
#include <errno.h> /* return codes and error numbers */
|
|
|
|
|
2005-07-14 17:12:12 +02:00
|
|
|
/* Important kernel header files. */
|
|
|
|
#include "config.h" /* configuration, MUST be first */
|
|
|
|
#include "const.h" /* constants, MUST be second */
|
|
|
|
#include "type.h" /* type definitions, MUST be third */
|
|
|
|
#include "proto.h" /* function prototypes */
|
|
|
|
#include "glo.h" /* global variables */
|
|
|
|
#include "ipc.h" /* IPC constants */
|
2006-10-30 16:53:38 +01:00
|
|
|
#include "profile.h" /* system profiling */
|
2005-07-14 17:12:12 +02:00
|
|
|
#include "debug.h" /* debugging, MUST be last kernel header */
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-07-14 17:12:12 +02:00
|
|
|
#endif /* KERNEL_H */
|