Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205289
b: refs/heads/master
c: 210f766
h: refs/heads/master
i:
  205287: 06d0035
v: v3
  • Loading branch information
Li Zefan authored and Steven Rostedt committed Jun 28, 2010
1 parent 39e1cb9 commit 33f126a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 26 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 363d0f6490f319d0dd69b7ec7503c5f6cbab36d9
refs/heads/master: 210f766915207636acccba7bec42248bfe882998
32 changes: 7 additions & 25 deletions trunk/include/trace/events/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,31 +49,6 @@ TRACE_EVENT(sched_kthread_stop_ret,
TP_printk("ret=%d", __entry->ret)
);

/*
* Tracepoint for waiting on task to unschedule:
*/
TRACE_EVENT(sched_wait_task,

TP_PROTO(struct task_struct *p),

TP_ARGS(p),

TP_STRUCT__entry(
__array( char, comm, TASK_COMM_LEN )
__field( pid_t, pid )
__field( int, prio )
),

TP_fast_assign(
memcpy(__entry->comm, p->comm, TASK_COMM_LEN);
__entry->pid = p->pid;
__entry->prio = p->prio;
),

TP_printk("comm=%s pid=%d prio=%d",
__entry->comm, __entry->pid, __entry->prio)
);

/*
* Tracepoint for waking up a task:
*/
Expand Down Expand Up @@ -239,6 +214,13 @@ DEFINE_EVENT(sched_process_template, sched_process_exit,
TP_PROTO(struct task_struct *p),
TP_ARGS(p));

/*
* Tracepoint for waiting on task to unschedule:
*/
DEFINE_EVENT(sched_process_template, sched_wait_task,
TP_PROTO(struct task_struct *p),
TP_ARGS(p));

/*
* Tracepoint for a waiting task:
*/
Expand Down

0 comments on commit 33f126a

Please sign in to comment.