diff options
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_sched.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/kern_sched.c b/sys/kern/kern_sched.c index 81dd3a6..ff26e0a 100644 --- a/sys/kern/kern_sched.c +++ b/sys/kern/kern_sched.c @@ -28,6 +28,7 @@ */ #include <sys/sched.h> +#include <sys/schedvar.h> #include <sys/sched_state.h> #include <sys/types.h> #include <sys/timer.h> @@ -37,8 +38,6 @@ #include <assert.h> #include <string.h> -#define DEFAULT_TIMESLICE_USEC 100000000 - /* * Thread ready queue - all threads ready to be * scheduled should be added to this queue. |