Messages in this thread |  | | Subject | Re: [PATCH 0/4][RFC] event tracer | | From | Peter Zijlstra <> | | Date | Tue, 24 Feb 2009 20:42:36 +0100 |
| |
On Tue, 2009-02-24 at 14:33 -0500, Steven Rostedt wrote:
> DECLARE_TRACE_FMT(sched_kthread_stop, > TPPROTO(struct task_struct *t), > TPARGS(t), > "task %s:%d", TPARGS(t->comm, t->pid));
Consistency would require something like:
DECLARE_TRACE_FMT(sched_kthread_stop, TPPROTO(struct task_struct *t), TPARGS(t), TPFMT("task %s:%d", t->comm, t->pid));
I seem to remember Jason proposing something like this in the past.
|  |