Fix sys exit
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sat, 17 Sep 2011 13:52:16 +0000 (09:52 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sat, 17 Sep 2011 13:52:16 +0000 (09:52 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
instrumentation/syscalls/headers/syscalls_unknown.h

index ad39e2d329eedc1957e0a1f8bcf0049fdfdadd55..45da2ad32c03d5d2882ca64b38d8f27558553eb0 100644 (file)
@@ -28,8 +28,8 @@ TRACE_EVENT(sys_unknown,
  * event.
  */
 TRACE_EVENT(exit_syscall,
-       TP_PROTO(long errno),
-       TP_ARGS(errno),
+       TP_PROTO(struct pt_regs *regs, long errno),
+       TP_ARGS(regs, errno),
        TP_STRUCT__entry(
                __field(long, errno)
        ),
This page took 0.025824 seconds and 4 git commands to generate.