X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=include%2Flttng%2Fust-events.h;h=18706fa898139e3161a0620196d1f60f0c0e16aa;hb=1a37a8730e943967540944344da2f8bd1702d78e;hp=946abe4b610d80fa2fb621d71a4404328d7cb4a1;hpb=2adb7ad28124fdbc0ad61bcada1c7dbceb03e9ab;p=lttng-ust.git diff --git a/include/lttng/ust-events.h b/include/lttng/ust-events.h index 946abe4b..18706fa8 100644 --- a/include/lttng/ust-events.h +++ b/include/lttng/ust-events.h @@ -71,13 +71,13 @@ enum lttng_ust_string_encoding { NR_LTTNG_UST_STRING_ENCODING, }; -struct lttng_enum_value { +struct lttng_ust_enum_value { unsigned long long value; unsigned int signedness:1; }; -enum lttng_enum_entry_options { - LTTNG_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0, +enum lttng_ust_enum_entry_option { + LTTNG_UST_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0, }; /* @@ -95,7 +95,7 @@ enum lttng_enum_entry_options { struct lttng_ust_enum_entry { uint32_t struct_size; - struct lttng_enum_value start, end; /* start and end are inclusive */ + struct lttng_ust_enum_value start, end; /* start and end are inclusive */ const char *string; unsigned int options;