diff options
Diffstat (limited to 'bits/sched.h')
-rw-r--r-- | bits/sched.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bits/sched.h b/bits/sched.h index bdd94c969d..8d9f077eee 100644 --- a/bits/sched.h +++ b/bits/sched.h @@ -29,6 +29,10 @@ #define SCHED_FIFO 1 #define SCHED_RR 2 -#include <bits/types/struct_sched_param.h> +/* Data structure to describe a process' schedulability. */ +struct sched_param +{ + int sched_priority; +}; #endif /* bits/sched.h */ |