From: Mathieu Desnoyers Date: Fri, 11 Dec 2020 15:51:36 +0000 (-0500) Subject: ust-abi: use 0, 1 for counter enumerations X-Git-Tag: v2.13.0-rc1~406 X-Git-Url: http://git.lttng.org/?p=lttng-ust.git;a=commitdiff_plain;h=5f57042ed005e576934dac3d518ace913eca5ffe ust-abi: use 0, 1 for counter enumerations Signed-off-by: Mathieu Desnoyers --- diff --git a/include/lttng/ust-abi.h b/include/lttng/ust-abi.h index b1cd9b3d..10ee6d44 100644 --- a/include/lttng/ust-abi.h +++ b/include/lttng/ust-abi.h @@ -110,8 +110,8 @@ enum lttng_ust_counter_arithmetic { }; enum lttng_ust_counter_bitness { - LTTNG_UST_COUNTER_BITNESS_32 = 4, - LTTNG_UST_COUNTER_BITNESS_64 = 8, + LTTNG_UST_COUNTER_BITNESS_32 = 0, + LTTNG_UST_COUNTER_BITNESS_64 = 1, }; struct lttng_ust_counter_dimension {