aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace/events/sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/trace/events/sched.h')
-rw-r--r--include/trace/events/sched.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/trace/events/sched.h b/include/trace/events/sched.h
index 9d316b22388c..cfceb0b73e20 100644
--- a/include/trace/events/sched.h
+++ b/include/trace/events/sched.h
@@ -288,31 +288,6 @@ TRACE_EVENT(sched_process_fork,
288); 288);
289 289
290/* 290/*
291 * Tracepoint for sending a signal:
292 */
293TRACE_EVENT(sched_signal_send,
294
295 TP_PROTO(int sig, struct task_struct *p),
296
297 TP_ARGS(sig, p),
298
299 TP_STRUCT__entry(
300 __field( int, sig )
301 __array( char, comm, TASK_COMM_LEN )
302 __field( pid_t, pid )
303 ),
304
305 TP_fast_assign(
306 memcpy(__entry->comm, p->comm, TASK_COMM_LEN);
307 __entry->pid = p->pid;
308 __entry->sig = sig;
309 ),
310
311 TP_printk("sig=%d comm=%s pid=%d",
312 __entry->sig, __entry->comm, __entry->pid)
313);
314
315/*
316 * XXX the below sched_stat tracepoints only apply to SCHED_OTHER/BATCH/IDLE 291 * XXX the below sched_stat tracepoints only apply to SCHED_OTHER/BATCH/IDLE
317 * adding sched_stat support to SCHED_FIFO/RR would be welcome. 292 * adding sched_stat support to SCHED_FIFO/RR would be welcome.
318 */ 293 */