X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Flttng.h;h=62b3ca7c8608d09e9a46745e3bec981edf594696;hp=bde46fa60337fb8ff07b2410e92478c5b167d5db;hb=3bd1e0819b577ffcb44acd7c2f8e02ff09654b7b;hpb=a54bd42d73836eb9033a31c3f68be5b7e8612dce diff --git a/include/lttng/lttng.h b/include/lttng/lttng.h index bde46fa60..62b3ca7c8 100644 --- a/include/lttng/lttng.h +++ b/include/lttng/lttng.h @@ -61,12 +61,13 @@ enum lttng_domain_type { * Instrumentation type of tracing event. */ enum lttng_event_type { - LTTNG_EVENT_TRACEPOINT, - LTTNG_EVENT_PROBE, - LTTNG_EVENT_FUNCTION, - LTTNG_EVENT_FUNCTION_ENTRY, - LTTNG_EVENT_NOOP, - LTTNG_EVENT_SYSCALL, + LTTNG_EVENT_ALL = -1, + LTTNG_EVENT_TRACEPOINT = 0, + LTTNG_EVENT_PROBE = 1, + LTTNG_EVENT_FUNCTION = 2, + LTTNG_EVENT_FUNCTION_ENTRY = 3, + LTTNG_EVENT_NOOP = 4, + LTTNG_EVENT_SYSCALL = 5, }; /* @@ -299,7 +300,7 @@ extern const char *lttng_get_readable_code(int code); * 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 + * NOTE: At the moment, if you use the liblttng-kconsumer, 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,