diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-22 14:45:39 -0400 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-22 14:45:39 -0400 |
commit | 8973214f010cf55fbf18cb88471d6c99ed6ff575 (patch) | |
tree | 80fe28857305bb6cfaaa130206967282759511e7 /include/litmus/rt_param.h | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Introduction of basic nesting foundations.
Diffstat (limited to 'include/litmus/rt_param.h')
-rw-r--r-- | include/litmus/rt_param.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index d6d799174160..3a054db8ee07 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -133,7 +133,17 @@ struct rt_param { | |||
133 | * could point to self if PI does not result in | 133 | * could point to self if PI does not result in |
134 | * an increased task priority. | 134 | * an increased task priority. |
135 | */ | 135 | */ |
136 | struct task_struct* inh_task; | 136 | struct task_struct* eff_prio; |
137 | |||
138 | #ifdef CONFIG_LITMUS_NESTED_LOCKING | ||
139 | struct task_struct* local_prio; | ||
140 | struct task_struct* trans_prio; | ||
141 | |||
142 | /* pointer to the last lock acquired */ | ||
143 | struct litmus_lock* last_lock; | ||
144 | #endif | ||
145 | |||
146 | |||
137 | 147 | ||
138 | #ifdef CONFIG_NP_SECTION | 148 | #ifdef CONFIG_NP_SECTION |
139 | /* For the FMLP under PSN-EDF, it is required to make the task | 149 | /* For the FMLP under PSN-EDF, it is required to make the task |