X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fkernel-ctl%2Fkernel-ctl.h;h=5668468e68cdc4e9318ce73facc215c7477a5748;hb=ce0b1d61919f37517a6212f7af2afe0fa1b1dcb0;hp=49925ea6c3affe8264b1f4b0a7cd00571c90dd39;hpb=41dc93d9df7c6bba1e1fb765d726700c9eafb144;p=lttng-tools.git diff --git a/src/common/kernel-ctl/kernel-ctl.h b/src/common/kernel-ctl/kernel-ctl.h index 49925ea6c..5668468e6 100644 --- a/src/common/kernel-ctl/kernel-ctl.h +++ b/src/common/kernel-ctl/kernel-ctl.h @@ -28,8 +28,15 @@ int kernctl_disable(int fd); int kernctl_start_session(int fd); int kernctl_stop_session(int fd); -/* Apply on event FD */ -int kernctl_filter(int fd, struct lttng_filter_bytecode *filter); +int kernctl_create_event_notifier_group(int fd); + +/* Apply on event notifier_group file descriptor. */ +int kernctl_create_event_notifier_group_notification_fd(int fd); +int kernctl_create_event_notifier(int fd, + const struct lttng_kernel_event_notifier *event_notifier); + +/* Apply on event file descriptor. */ +int kernctl_filter(int fd, const struct lttng_filter_bytecode *filter); int kernctl_add_callsite(int fd, struct lttng_kernel_event_callsite *callsite); int kernctl_tracepoint_list(int fd); @@ -39,7 +46,8 @@ int kernctl_tracer_abi_version(int fd, struct lttng_kernel_tracer_abi_version *v int kernctl_wait_quiescent(int fd); /* - * kernctl_syscall_mask - Get syscall mask associated to a channel FD. + * kernctl_syscall_mask - Get syscall mask associated to a channel file + * descriptor. * * The parameter @syscall_mask should initially be either NULL or point * to memory allocated with malloc(3) or realloc(3). When the function @@ -52,7 +60,7 @@ int kernctl_wait_quiescent(int fd); int kernctl_syscall_mask(int fd, char **syscall_mask, uint32_t *nr_bits); -/* Process ID tracking can be applied to session FD */ +/* Process ID tracking can be applied to session file descriptor. */ int kernctl_track_pid(int fd, int pid); int kernctl_untrack_pid(int fd, int pid); int kernctl_list_tracker_pids(int fd);