1*433d6423SLionel Sambuc /* This is the master header for the Scheduler. It includes some other files 2*433d6423SLionel Sambuc * and defines the principal constants. 3*433d6423SLionel Sambuc */ 4*433d6423SLionel Sambuc #define _SYSTEM 1 /* tell headers that this is the kernel */ 5*433d6423SLionel Sambuc 6*433d6423SLionel Sambuc /* The following are so basic, all the *.c files get them automatically. */ 7*433d6423SLionel Sambuc #include <minix/config.h> /* MUST be first */ 8*433d6423SLionel Sambuc #include <sys/types.h> 9*433d6423SLionel Sambuc #include <minix/const.h> 10*433d6423SLionel Sambuc 11*433d6423SLionel Sambuc #include <minix/syslib.h> 12*433d6423SLionel Sambuc #include <minix/sysutil.h> 13*433d6423SLionel Sambuc 14*433d6423SLionel Sambuc #include <errno.h> 15*433d6423SLionel Sambuc 16*433d6423SLionel Sambuc #include "proto.h" 17*433d6423SLionel Sambuc 18*433d6423SLionel Sambuc extern struct machine machine; /* machine info */ 19