aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-05-12 15:20:52 -0400
committerThomas Gleixner <tglx@linutronix.de>2008-05-23 15:04:44 -0400
commit4e65551905fb0300ae7e667cbaa41ee2e3f29a13 (patch)
tree0e642c311e31043eecf86c218128c40e1ddac782 /include/linux/sched.h
parent4c1f4d4f0175129934d5dbc19a39296430937a05 (diff)
ftrace: sched tracer, trace full rbtree
Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h32
1 files changed, 23 insertions, 9 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 05744f9cb096..652d380ae563 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -2119,20 +2119,34 @@ static inline void arch_pick_mmap_layout(struct mm_struct *mm)
2119 2119
2120#ifdef CONFIG_CONTEXT_SWITCH_TRACER 2120#ifdef CONFIG_CONTEXT_SWITCH_TRACER
2121extern void 2121extern void
2122ftrace_ctx_switch(struct task_struct *prev, struct task_struct *next); 2122ftrace_ctx_switch(void *rq, struct task_struct *prev, struct task_struct *next);
2123extern void
2124ftrace_wake_up_task(void *rq, struct task_struct *wakee,
2125 struct task_struct *curr);
2126extern void ftrace_all_fair_tasks(void *__rq, void *__tr, void *__data);
2127extern void
2128__trace_special(void *__tr, void *__data,
2129 unsigned long arg1, unsigned long arg2, unsigned long arg3);
2123#else 2130#else
2124static inline void 2131static inline void
2125ftrace_ctx_switch(struct task_struct *prev, struct task_struct *next) 2132ftrace_ctx_switch(void *rq, struct task_struct *prev, struct task_struct *next)
2133{
2134}
2135static inline void
2136sched_trace_special(unsigned long p1, unsigned long p2, unsigned long p3)
2137{
2138}
2139static inline void
2140ftrace_wake_up_task(void *rq, struct task_struct *wakee,
2141 struct task_struct *curr)
2142{
2143}
2144static inline void ftrace_all_fair_tasks(void *__rq, void *__tr, void *__data)
2126{ 2145{
2127} 2146}
2128#endif
2129
2130#ifdef CONFIG_SCHED_TRACER
2131extern void
2132ftrace_wake_up_task(struct task_struct *wakee, struct task_struct *curr);
2133#else
2134static inline void 2147static inline void
2135ftrace_wake_up_task(struct task_struct *wakee, struct task_struct *curr) 2148__trace_special(void *__tr, void *__data,
2149 unsigned long arg1, unsigned long arg2, unsigned long arg3)
2136{ 2150{
2137} 2151}
2138#endif 2152#endif