Implement event notifiers for syscalls
[lttng-modules.git] / include / instrumentation / syscalls / headers / syscalls_unknown.h
index 64e53792e5b2f1c8a29ac860e64a94593940a240..8645d7144f0e90950d1e24a810a92fe10dda755f 100644 (file)
@@ -9,7 +9,10 @@
 #define UNKNOWN_SYSCALL_NRARGS 6
 
 #undef TP_PROBE_CB
-#define TP_PROBE_CB(_template)          &syscall_entry_event_probe
+#define TP_PROBE_CB(_template)                 &syscall_entry_event_probe
+
+#undef TP_EVENT_NOTIFIER_PROBE_CB
+#define TP_EVENT_NOTIFIER_PROBE_CB(_template)  &syscall_entry_event_notifier_probe
 
 LTTNG_TRACEPOINT_EVENT(syscall_entry_unknown,
        TP_PROTO(int id, unsigned long *args),
@@ -30,6 +33,8 @@ LTTNG_TRACEPOINT_EVENT(compat_syscall_entry_unknown,
 
 #undef TP_PROBE_CB
 #define TP_PROBE_CB(_template)          &syscall_exit_event_probe
+#undef TP_EVENT_NOTIFIER_PROBE_CB
+#define TP_EVENT_NOTIFIER_PROBE_CB(_template)  &syscall_exit_event_notifier_probe
 
 LTTNG_TRACEPOINT_EVENT(syscall_exit_unknown,
        TP_PROTO(int id, long ret, unsigned long *args),
This page took 0.023207 seconds and 4 git commands to generate.