abi: use 0, 1 for counter enumerations
[lttng-modules.git] / include / lttng / abi.h
index 1092a4fd79554cc77935f7a45ec4d8f87afcc633..86c0a3cf493e73201c6e56737f317ecd344386fc 100644 (file)
@@ -147,12 +147,12 @@ struct lttng_kernel_event_notifier {
 } __attribute__((packed));
 
 enum lttng_kernel_counter_arithmetic {
-    LTTNG_KERNEL_COUNTER_ARITHMETIC_MODULAR = 1,
+       LTTNG_KERNEL_COUNTER_ARITHMETIC_MODULAR = 0,
 };
 
 enum lttng_kernel_counter_bitness {
-    LTTNG_KERNEL_COUNTER_BITNESS_32 = 1,
-    LTTNG_KERNEL_COUNTER_BITNESS_64 = 2,
+       LTTNG_KERNEL_COUNTER_BITNESS_32 = 0,
+       LTTNG_KERNEL_COUNTER_BITNESS_64 = 1,
 };
 
 struct lttng_kernel_counter_dimension {
This page took 0.024037 seconds and 4 git commands to generate.