From: Mathieu Desnoyers Date: Tue, 23 Mar 2021 18:59:47 +0000 (-0400) Subject: ust-abi: add missing lttng_ust_abi prefixes X-Git-Tag: v2.13.0-rc1~209 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=459cbee453f65d58cd56dff4eb7f9457f1d9527f;p=lttng-ust.git ust-abi: add missing lttng_ust_abi prefixes Signed-off-by: Mathieu Desnoyers Change-Id: Ie2b2c28643203ba3a19b746241997776b8c58ed5 --- diff --git a/include/lttng/ust-abi.h b/include/lttng/ust-abi.h index 843fe4ed..6fe5acd6 100644 --- a/include/lttng/ust-abi.h +++ b/include/lttng/ust-abi.h @@ -103,8 +103,8 @@ struct lttng_ust_abi_counter_dimension { #define LTTNG_UST_ABI_COUNTER_CONF_PADDING1 67 struct lttng_ust_abi_counter_conf { - uint32_t arithmetic; /* enum lttng_ust_counter_arithmetic */ - uint32_t bitness; /* enum lttng_ust_counter_bitness */ + uint32_t arithmetic; /* enum lttng_ust_abi_counter_arithmetic */ + uint32_t bitness; /* enum lttng_ust_abi_counter_bitness */ uint32_t number_dimensions; int64_t global_sum_step; struct lttng_ust_abi_counter_dimension dimensions[LTTNG_UST_ABI_COUNTER_DIMENSION_MAX]; @@ -308,14 +308,14 @@ struct lttng_ust_abi_object_data { } u; } __attribute__((packed)); -enum lttng_ust_calibrate_type { +enum lttng_ust_abi_calibrate_type { LTTNG_UST_ABI_CALIBRATE_TRACEPOINT, }; #define LTTNG_UST_ABI_CALIBRATE_PADDING1 16 #define LTTNG_UST_ABI_CALIBRATE_PADDING2 (LTTNG_UST_ABI_SYM_NAME_LEN + 32) struct lttng_ust_abi_calibrate { - enum lttng_ust_calibrate_type type; /* type (input) */ + enum lttng_ust_abi_calibrate_type type; /* type (input) */ char padding[LTTNG_UST_ABI_CALIBRATE_PADDING1]; union {