Part of the gradual TRACE_EVENT() semicolon removal. Enables creation of array of events, thus saving space for trace event probes. Signed-off-by: Mathieu Desnoyers CC: Steven Rostedt CC: Frederic Weisbecker CC: Ingo Molnar CC: Thomas Gleixner CC: Li Zefan CC: Masami Hiramatsu CC: Roland McGrath CC: Oleg Nesterov --- include/trace/events/signal.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) Index: linux-2.6-lttng/include/trace/events/signal.h =================================================================== --- linux-2.6-lttng.orig/include/trace/events/signal.h +++ linux-2.6-lttng/include/trace/events/signal.h @@ -59,7 +59,7 @@ TRACE_EVENT(signal_generate, TP_printk("sig=%d errno=%d code=%d comm=%s pid=%d", __entry->sig, __entry->errno, __entry->code, __entry->comm, __entry->pid) -); +) /** * signal_deliver - called when a signal is delivered @@ -99,7 +99,7 @@ TRACE_EVENT(signal_deliver, TP_printk("sig=%d errno=%d code=%d sa_handler=%lx sa_flags=%lx", __entry->sig, __entry->errno, __entry->code, __entry->sa_handler, __entry->sa_flags) -); +) DECLARE_EVENT_CLASS(signal_queue_overflow, @@ -122,7 +122,7 @@ DECLARE_EVENT_CLASS(signal_queue_overflo TP_printk("sig=%d group=%d errno=%d code=%d", __entry->sig, __entry->group, __entry->errno, __entry->code) -); +) /** * signal_overflow_fail - called when signal queue is overflow @@ -140,7 +140,7 @@ DEFINE_EVENT(signal_queue_overflow, sign TP_PROTO(int sig, int group, struct siginfo *info), TP_ARGS(sig, group, info) -); +) /** * signal_lose_info - called when siginfo is lost @@ -158,7 +158,7 @@ DEFINE_EVENT(signal_queue_overflow, sign TP_PROTO(int sig, int group, struct siginfo *info), TP_ARGS(sig, group, info) -); +) #endif /* _TRACE_SIGNAL_H */ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/