Tracepoint loglevel: setup all loglevel information at build time
[lttng-ust.git] / include / lttng / ust-abi.h
index 5e4bf49e9c961a9d8f98ee6cb5697a365095ae91..ae95af6b222b494a3bc3c7eb350b4e793eede7af 100644 (file)
 #define LTTNG_UST_COMM_VERSION_MINOR           1
 
 enum lttng_ust_instrumentation {
-       LTTNG_UST_TRACEPOINT    = 0,
-       LTTNG_UST_PROBE         = 1,
-       LTTNG_UST_FUNCTION      = 2,
+       LTTNG_UST_TRACEPOINT            = 0,
+       LTTNG_UST_PROBE                 = 1,
+       LTTNG_UST_FUNCTION              = 2,
+       LTTNG_UST_TRACEPOINT_LOGLEVEL   = 3,
 };
 
 enum lttng_ust_output {
@@ -97,6 +98,12 @@ struct lttng_ust_channel_attr {
        enum lttng_ust_output output;           /* splice, mmap */
 };
 
+struct lttng_ust_loglevel {
+       char provider[LTTNG_UST_SYM_NAME_LEN];
+       char loglevel[LTTNG_UST_SYM_NAME_LEN];
+       int64_t value;
+};
+
 struct lttng_ust_object_data {
        int handle;
        int shm_fd;
@@ -120,6 +127,7 @@ struct lttng_ust_object_data {
 #define LTTNG_UST_TRACEPOINT_LIST              _UST_CMD(0x42)
 #define LTTNG_UST_WAIT_QUIESCENT               _UST_CMD(0x43)
 #define LTTNG_UST_REGISTER_DONE                        _UST_CMD(0x44)
+#define LTTNG_UST_LOGLEVEL_LIST                        _UST_CMD(0x45)
 
 /* Session FD commands */
 #define LTTNG_UST_METADATA                     \
@@ -147,6 +155,9 @@ struct lttng_ust_object_data {
 /* Tracepoint list commands */
 #define LTTNG_UST_TRACEPOINT_LIST_GET          _UST_CMD(0x90)
 
+/* Loglevel list commands */
+#define LTTNG_UST_LOGLEVEL_LIST_GET            _UST_CMD(0xA0)
+
 #define LTTNG_UST_ROOT_HANDLE  0
 
 struct lttng_ust_obj;
This page took 0.025919 seconds and 4 git commands to generate.