diff options
Diffstat (limited to 'include/litmus')
-rw-r--r-- | include/litmus/litmus.h | 2 | ||||
-rw-r--r-- | include/litmus/rt_param.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/litmus/litmus.h b/include/litmus/litmus.h index afa71d5aa71d..aa9249328772 100644 --- a/include/litmus/litmus.h +++ b/include/litmus/litmus.h | |||
@@ -79,7 +79,7 @@ void litmus_exit_task(struct task_struct *tsk); | |||
79 | #define get_deadline(t) (tsk_rt(t)->job_params.deadline) | 79 | #define get_deadline(t) (tsk_rt(t)->job_params.deadline) |
80 | #define get_release(t) (tsk_rt(t)->job_params.release) | 80 | #define get_release(t) (tsk_rt(t)->job_params.release) |
81 | #define get_class(t) (tsk_rt(t)->task_params.cls) | 81 | #define get_class(t) (tsk_rt(t)->task_params.cls) |
82 | #define get_crit(t) (tsk_rt(t)->task_params.crit) | 82 | #define get_crit(t) (tsk_rt(t)->task_params.crit) |
83 | 83 | ||
84 | inline static int budget_exhausted(struct task_struct* t) | 84 | inline static int budget_exhausted(struct task_struct* t) |
85 | { | 85 | { |
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index 17f7dcbc1e24..9adfdeb9bd6e 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -48,7 +48,7 @@ struct rt_task { | |||
48 | unsigned int cpu; | 48 | unsigned int cpu; |
49 | task_class_t cls; | 49 | task_class_t cls; |
50 | budget_policy_t budget_policy; /* ignored by pfair */ | 50 | budget_policy_t budget_policy; /* ignored by pfair */ |
51 | crit_level_t crit; | 51 | crit_level_t crit; |
52 | }; | 52 | }; |
53 | 53 | ||
54 | /* The definition of the data that is shared between the kernel and real-time | 54 | /* The definition of the data that is shared between the kernel and real-time |