aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus
diff options
context:
space:
mode:
Diffstat (limited to 'include/litmus')
-rw-r--r--include/litmus/litmus.h2
-rw-r--r--include/litmus/rt_param.h3
2 files changed, 0 insertions, 5 deletions
diff --git a/include/litmus/litmus.h b/include/litmus/litmus.h
index 12770e08990b..875783e6a67b 100644
--- a/include/litmus/litmus.h
+++ b/include/litmus/litmus.h
@@ -45,8 +45,6 @@ void litmus_exit_task(struct task_struct *tsk);
45#define tsk_rt(t) (&(t)->rt_param) 45#define tsk_rt(t) (&(t)->rt_param)
46 46
47/* Realtime utility macros */ 47/* Realtime utility macros */
48#define get_rt_flags(t) (tsk_rt(t)->flags)
49#define set_rt_flags(t,f) (tsk_rt(t)->flags=(f))
50#define is_priority_boosted(t) (tsk_rt(t)->priority_boosted) 48#define is_priority_boosted(t) (tsk_rt(t)->priority_boosted)
51#define get_boost_start(t) (tsk_rt(t)->boost_start_time) 49#define get_boost_start(t) (tsk_rt(t)->boost_start_time)
52 50
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h
index 5539b26588e6..4cd06dd32906 100644
--- a/include/litmus/rt_param.h
+++ b/include/litmus/rt_param.h
@@ -248,9 +248,6 @@ struct rt_param {
248 struct control_page * ctrl_page; 248 struct control_page * ctrl_page;
249}; 249};
250 250
251/* Possible RT flags */
252#define RT_F_EXIT_SEM 0x00000008
253
254#endif 251#endif
255 252
256#endif 253#endif