Prefix lttng_enum_value and lttng_enum_entry with lttng_kernel_
[lttng-modules.git] / include / lttng / events.h
index 5e456c52a38e3e3b3886fbfb7dff2b19637362b1..5e3800665ff6ab86e8ae0dd2e066de4d97ecb277 100644 (file)
@@ -58,13 +58,13 @@ enum channel_type {
        METADATA_CHANNEL,
 };
 
-struct lttng_enum_value {
+struct lttng_kernel_enum_value {
        unsigned long long value;
        unsigned int signedness:1;
 };
 
-struct lttng_enum_entry {
-       struct lttng_enum_value start, end;     /* start and end are inclusive */
+struct lttng_kernel_enum_entry {
+       struct lttng_kernel_enum_value start, end;      /* start and end are inclusive */
        const char *string;
        struct {
                unsigned int is_auto:1;
@@ -132,7 +132,7 @@ struct lttng_type {
 
 struct lttng_enum_desc {
        const char *name;
-       const struct lttng_enum_entry *entries;
+       const struct lttng_kernel_enum_entry *entries;
        unsigned int nr_entries;
 };
 
This page took 0.022628 seconds and 4 git commands to generate.