Syscall exit should fetch the "sc_out" parameters. This issue was
introduced by commit
e42c4f49c15b ("Split syscall tracepoint generation in their own files").
Fixes: e42c4f49c15b ("Split syscall tracepoint generation in their own files")
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: Ib34912005323ea34b6d11ca9acc5edf491649cdd
#define SC_EXIT
#undef sc_in
-#define sc_in(...) __VA_ARGS__
+#define sc_in(...)
#undef sc_out
-#define sc_out(...)
+#define sc_out(...) __VA_ARGS__
#undef sc_inout
-#define sc_inout(...) __VA_ARGS__
+#define sc_inout(...) __VA_ARGS__
#undef sc_exit
#define sc_exit(...) __VA_ARGS__
#define SC_EXIT
#undef sc_in
-#define sc_in(...) __VA_ARGS__
+#define sc_in(...)
#undef sc_out
-#define sc_out(...)
+#define sc_out(...) __VA_ARGS__
#undef sc_inout
-#define sc_inout(...) __VA_ARGS__
+#define sc_inout(...) __VA_ARGS__
#undef sc_exit
#define sc_exit(...) __VA_ARGS__