X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcommon%2Fkernel-ctl%2Fkernel-ctl.h;h=b67e8e356e44e247f7b19036c4430f71917729b8;hb=6e911cad03751b6814fddd65b19a592acdc2b7b7;hp=f9b81c334a647f205096ba56ed3d38bd91d7c36a;hpb=d14d33bf091e72b23b1f90ea18a0a01bed098b76;p=lttng-tools.git diff --git a/src/common/kernel-ctl/kernel-ctl.h b/src/common/kernel-ctl/kernel-ctl.h index f9b81c334..b67e8e356 100644 --- a/src/common/kernel-ctl/kernel-ctl.h +++ b/src/common/kernel-ctl/kernel-ctl.h @@ -21,6 +21,7 @@ #include #include +#include int kernctl_create_session(int fd); int kernctl_open_metadata(int fd, struct lttng_channel_attr *chops); @@ -39,6 +40,8 @@ int kernctl_tracer_version(int fd, struct lttng_kernel_tracer_version *v); int kernctl_wait_quiescent(int fd); int kernctl_calibrate(int fd, struct lttng_kernel_calibrate *calibrate); +int kernctl_enable_syscall(int fd, const char *syscall_name); +int kernctl_disable_syscall(int fd, const char *syscall_name); /* Buffer operations */ @@ -66,4 +69,13 @@ int kernctl_put_subbuf(int fd); int kernctl_buffer_flush(int fd); +/* index */ +int kernctl_get_timestamp_begin(int fd, uint64_t *timestamp_begin); +int kernctl_get_timestamp_end(int fd, uint64_t *timestamp_end); +int kernctl_get_events_discarded(int fd, uint64_t *events_discarded); +int kernctl_get_content_size(int fd, uint64_t *content_size); +int kernctl_get_packet_size(int fd, uint64_t *packet_size); +int kernctl_get_stream_id(int fd, uint64_t *stream_id); +int kernctl_get_current_timestamp(int fd, uint64_t *ts); + #endif /* _LTTNG_KERNEL_CTL_H */