X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=lttng-abi.h;h=b626b88e2c6b2b5eee0a49fd6b93133b8665175c;hb=80f87dd2321bb99f5b8cdab7ea6ff33f6ba99b9e;hp=3f2aefbea04cd1fa52909c7a7fe5b76ec047ab6f;hpb=7df57eb5d6bdc85ddcf2b9afb6cd0cacfb22096e;p=lttng-modules.git diff --git a/lttng-abi.h b/lttng-abi.h index 3f2aefbe..b626b88e 100644 --- a/lttng-abi.h +++ b/lttng-abi.h @@ -79,6 +79,10 @@ struct lttng_kernel_function_tracer { char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN]; }__attribute__((packed)); +struct lttng_kernel_syscall { + char disable; +} __attribute__((packed)); + /* * For syscall tracing, name = '\0' means "enable all". */ @@ -94,6 +98,7 @@ struct lttng_kernel_event { struct lttng_kernel_kretprobe kretprobe; struct lttng_kernel_kprobe kprobe; struct lttng_kernel_function_tracer ftrace; + struct lttng_kernel_syscall syscall; char padding[LTTNG_KERNEL_EVENT_PADDING2]; } u; }__attribute__((packed));