ust-abi: use 0, 1 for counter enumerations
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 11 Dec 2020 15:51:36 +0000 (10:51 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 11 Dec 2020 15:53:20 +0000 (10:53 -0500)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
include/lttng/ust-abi.h

index b1cd9b3d2a310f7f578e33e041cea4745ed80c0a..10ee6d4432451d613e1e0720c71aa95cd14beb62 100644 (file)
@@ -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 {
This page took 0.025073 seconds and 4 git commands to generate.