Tracepoint API namespacing ust-endian
[lttng-ust.git] / src / lib / lttng-ust / event-notifier-notification.c
index 51f10b2ebfec6526289b50baf6bcd66fe29d8cce..fe228c5d0553ed071c1f152f8eb299c8a7ed9f18 100644 (file)
@@ -79,7 +79,7 @@ int64_t capture_sequence_element_signed(uint8_t *ptr,
                int16_t tmp;
                tmp = *(int16_t *) ptr;
                if (byte_order_reversed)
-                       tmp = bswap_16(tmp);
+                       tmp = lttng_ust_bswap_16(tmp);
 
                value = tmp;
                break;
@@ -89,7 +89,7 @@ int64_t capture_sequence_element_signed(uint8_t *ptr,
                int32_t tmp;
                tmp = *(int32_t *) ptr;
                if (byte_order_reversed)
-                       tmp = bswap_32(tmp);
+                       tmp = lttng_ust_bswap_32(tmp);
 
                value = tmp;
                break;
@@ -99,7 +99,7 @@ int64_t capture_sequence_element_signed(uint8_t *ptr,
                int64_t tmp;
                tmp = *(int64_t *) ptr;
                if (byte_order_reversed)
-                       tmp = bswap_64(tmp);
+                       tmp = lttng_ust_bswap_64(tmp);
 
                value = tmp;
                break;
@@ -128,7 +128,7 @@ uint64_t capture_sequence_element_unsigned(uint8_t *ptr,
                uint16_t tmp;
                tmp = *(uint16_t *) ptr;
                if (byte_order_reversed)
-                       tmp = bswap_16(tmp);
+                       tmp = lttng_ust_bswap_16(tmp);
 
                value = tmp;
                break;
@@ -138,7 +138,7 @@ uint64_t capture_sequence_element_unsigned(uint8_t *ptr,
                uint32_t tmp;
                tmp = *(uint32_t *) ptr;
                if (byte_order_reversed)
-                       tmp = bswap_32(tmp);
+                       tmp = lttng_ust_bswap_32(tmp);
 
                value = tmp;
                break;
@@ -148,7 +148,7 @@ uint64_t capture_sequence_element_unsigned(uint8_t *ptr,
                uint64_t tmp;
                tmp = *(uint64_t *) ptr;
                if (byte_order_reversed)
-                       tmp = bswap_64(tmp);
+                       tmp = lttng_ust_bswap_64(tmp);
 
                value = tmp;
                break;
This page took 0.02451 seconds and 4 git commands to generate.