Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 1 | #ifndef _TRACE_SCHED_H |
| 2 | #define _TRACE_SCHED_H |
| 3 | |
| 4 | #include <linux/sched.h> |
| 5 | #include <linux/tracepoint.h> |
| 6 | |
| 7 | DEFINE_TRACE(sched_kthread_stop, |
| 8 | TPPROTO(struct task_struct *t), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 9 | TPARGS(t)); |
| 10 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 11 | DEFINE_TRACE(sched_kthread_stop_ret, |
| 12 | TPPROTO(int ret), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 13 | TPARGS(ret)); |
| 14 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 15 | DEFINE_TRACE(sched_wait_task, |
| 16 | TPPROTO(struct rq *rq, struct task_struct *p), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 17 | TPARGS(rq, p)); |
| 18 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 19 | DEFINE_TRACE(sched_wakeup, |
| 20 | TPPROTO(struct rq *rq, struct task_struct *p), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 21 | TPARGS(rq, p)); |
| 22 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 23 | DEFINE_TRACE(sched_wakeup_new, |
| 24 | TPPROTO(struct rq *rq, struct task_struct *p), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 25 | TPARGS(rq, p)); |
| 26 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 27 | DEFINE_TRACE(sched_switch, |
| 28 | TPPROTO(struct rq *rq, struct task_struct *prev, |
| 29 | struct task_struct *next), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 30 | TPARGS(rq, prev, next)); |
| 31 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 32 | DEFINE_TRACE(sched_migrate_task, |
| 33 | TPPROTO(struct rq *rq, struct task_struct *p, int dest_cpu), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 34 | TPARGS(rq, p, dest_cpu)); |
| 35 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 36 | DEFINE_TRACE(sched_process_free, |
| 37 | TPPROTO(struct task_struct *p), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 38 | TPARGS(p)); |
| 39 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 40 | DEFINE_TRACE(sched_process_exit, |
| 41 | TPPROTO(struct task_struct *p), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 42 | TPARGS(p)); |
| 43 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 44 | DEFINE_TRACE(sched_process_wait, |
| 45 | TPPROTO(struct pid *pid), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 46 | TPARGS(pid)); |
| 47 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 48 | DEFINE_TRACE(sched_process_fork, |
| 49 | TPPROTO(struct task_struct *parent, struct task_struct *child), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 50 | TPARGS(parent, child)); |
| 51 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 52 | DEFINE_TRACE(sched_signal_send, |
| 53 | TPPROTO(int sig, struct task_struct *p), |
Ingo Molnar | cf569a9 | 2008-07-23 13:48:22 +0200 | [diff] [blame] | 54 | TPARGS(sig, p)); |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 55 | |
| 56 | #endif |