Namespace _float_mant_dig with lttng_ust_ prefix
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 17 Mar 2021 20:16:48 +0000 (16:16 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 17 Mar 2021 20:16:48 +0000 (16:16 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: I25085e6c9d93e6b0c4ff8392d263d53117505c40

include/lttng/ust-events.h

index 18706fa898139e3161a0620196d1f60f0c0e16aa..bb038bbe11e800e5d587aa69cb5035db62e1104f 100644 (file)
@@ -146,7 +146,7 @@ struct lttng_ust_type_float {
  * Only float and double are supported. long double is not supported at
  * the moment.
  */
-#define _float_mant_dig(_type)                                         \
+#define lttng_ust_float_mant_dig(_type)                                        \
        (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG                  \
                : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG       \
                : 0))
@@ -158,8 +158,8 @@ struct lttng_ust_type_float {
                },                                                      \
                .struct_size = sizeof(struct lttng_ust_type_float),     \
                .exp_dig = sizeof(_type) * CHAR_BIT                     \
-                       - _float_mant_dig(_type),                       \
-               .mant_dig = _float_mant_dig(_type),                     \
+                       - lttng_ust_float_mant_dig(_type),              \
+               .mant_dig = lttng_ust_float_mant_dig(_type),            \
                .alignment = lttng_alignof(_type) * CHAR_BIT,           \
                .reverse_byte_order = BYTE_ORDER != FLOAT_WORD_ORDER,   \
        }))
This page took 0.028057 seconds and 4 git commands to generate.