diff options
Diffstat (limited to 'linux-headers/include/linux/sched')
-rw-r--r-- | linux-headers/include/linux/sched/types.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/linux-headers/include/linux/sched/types.h b/linux-headers/include/linux/sched/types.h index 8186aa1..90606bc 100644 --- a/linux-headers/include/linux/sched/types.h +++ b/linux-headers/include/linux/sched/types.h @@ -4,10 +4,6 @@ #include <linux/types.h> -struct sched_param { - int sched_priority; -}; - #define SCHED_ATTR_SIZE_VER0 48 /* sizeof first published struct */ #define SCHED_ATTR_SIZE_VER1 56 /* add: util_{min,max} */ @@ -62,9 +58,9 @@ struct sched_param { * * This is reflected by the following fields of the sched_attr structure: * - * @sched_deadline representative of the task's deadline - * @sched_runtime representative of the task's runtime - * @sched_period representative of the task's period + * @sched_deadline representative of the task's deadline in nanoseconds + * @sched_runtime representative of the task's runtime in nanoseconds + * @sched_period representative of the task's period in nanoseconds * * Given this task model, there are a multiplicity of scheduling algorithms * and policies, that can be used to ensure all the tasks will make their |