X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=include%2Flttng%2Flttng.h;h=bde46fa60337fb8ff07b2410e92478c5b167d5db;hb=2b0bf86429e59691e549be8a1fee6aa72879c502;hp=3f96a24b695819560047dccf43831ade3fa46609;hpb=cd80958d00fddabced5fbd60641978516a01e29e;p=lttng-tools.git diff --git a/include/lttng/lttng.h b/include/lttng/lttng.h index 3f96a24b6..bde46fa60 100644 --- a/include/lttng/lttng.h +++ b/include/lttng/lttng.h @@ -23,10 +23,9 @@ #ifndef _LTTNG_H #define _LTTNG_H -#include -#include -#include #include +#include +#include /* Default unix group name for tracing. */ #define LTTNG_DEFAULT_TRACING_GROUP "tracing" @@ -66,6 +65,8 @@ enum lttng_event_type { LTTNG_EVENT_PROBE, LTTNG_EVENT_FUNCTION, LTTNG_EVENT_FUNCTION_ENTRY, + LTTNG_EVENT_NOOP, + LTTNG_EVENT_SYSCALL, }; /* @@ -293,6 +294,17 @@ extern int lttng_set_tracing_group(const char *name); */ extern const char *lttng_get_readable_code(int code); +/* + * This call permits to register an "outside consumer" to a session and a lttng + * domain. No consumer will be spawned and all fds/commands will go through the + * socket path given (socket_path). + * + * NOTE: At the moment, if you use the liblttngkconsumerd, you can only use the + * command socket. The error socket is not supported yet for roaming consumers. + */ +extern int lttng_register_consumer(struct lttng_handle *handle, + const char *socket_path); + /* * Start tracing for *all* registered trace (kernel and user-space). */