X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=include%2Flttng%2Fust-endian.h;h=5a6085f9e5a0acbd41c25db5cf8e20d95e6c6107;hb=1c1968450409b3c159a3000f9e1a968ff1e5f7e8;hp=a0a6db3ba16b11daaccb7d78468baeda514b46ef;hpb=c0c0989ab70574e09b2f7e8b48c2da6af664a849;p=lttng-ust.git diff --git a/include/lttng/ust-endian.h b/include/lttng/ust-endian.h index a0a6db3b..5a6085f9 100644 --- a/include/lttng/ust-endian.h +++ b/include/lttng/ust-endian.h @@ -1,9 +1,27 @@ +// SPDX-FileCopyrightText: 2012 Mathieu Desnoyers +// +// SPDX-License-Identifier: MIT + /* - * SPDX-License-Identifier: MIT + * This header defines the following endian macros based on the current + * platform endian headers: + * + * BYTE_ORDER this macro shall have a value equal to one + * of the *_ENDIAN macros in this header. + * FLOAT_WORD_ORDER this macro shall have a value equal to one + * of the *_ENDIAN macros in this header. + * LITTLE_ENDIAN if BYTE_ORDER == LITTLE_ENDIAN, the host + * byte order is from least significant to + * most significant. + * BIG_ENDIAN if BYTE_ORDER == BIG_ENDIAN, the host byte + * order is from most significant to least + * significant. * - * Copyright (C) 2012 Mathieu Desnoyers + * Direct byte swapping interfaces: * - * endian.h compatibility layer. + * uint16_t bswap_16(uint16_t x); (* swap bytes 16-bit word *) + * uint32_t bswap_32(uint32_t x); (* swap bytes 32-bit word *) + * uint64_t bswap_64(uint32_t x); (* swap bytes 64-bit word *) */ #ifndef _LTTNG_UST_ENDIAN_H @@ -12,37 +30,36 @@ #if (defined(__linux__) || defined(__CYGWIN__)) #include #include -#elif defined(__FreeBSD__) -#include -#define bswap_16(x) bswap16(x) -#define bswap_32(x) bswap32(x) -#define bswap_64(x) bswap64(x) -#else -#error "Please add support for your OS." -#endif -/* - * BYTE_ORDER, LITTLE_ENDIAN, and BIG_ENDIAN are only defined on Linux - * if __USE_BSD is defined. Force their definition. - */ -#ifndef BYTE_ORDER -#define BYTE_ORDER __BYTE_ORDER -#endif +#define lttng_ust_bswap_16(x) bswap_16(x) +#define lttng_ust_bswap_32(x) bswap_32(x) +#define lttng_ust_bswap_64(x) bswap_64(x) -#ifndef LITTLE_ENDIAN -#define LITTLE_ENDIAN __LITTLE_ENDIAN -#endif +#define LTTNG_UST_BYTE_ORDER __BYTE_ORDER +#define LTTNG_UST_LITTLE_ENDIAN __LITTLE_ENDIAN +#define LTTNG_UST_BIG_ENDIAN __BIG_ENDIAN -#ifndef BIG_ENDIAN -#define BIG_ENDIAN __BIG_ENDIAN -#endif - -#ifndef FLOAT_WORD_ORDER #ifdef __FLOAT_WORD_ORDER -#define FLOAT_WORD_ORDER __FLOAT_WORD_ORDER +#define LTTNG_UST_FLOAT_WORD_ORDER __FLOAT_WORD_ORDER #else /* __FLOAT_WORD_ORDER */ -#define FLOAT_WORD_ORDER BYTE_ORDER +#define LTTNG_UST_FLOAT_WORD_ORDER __BYTE_ORDER #endif /* __FLOAT_WORD_ORDER */ -#endif /* FLOAT_WORD_ORDER */ + +#elif defined(__FreeBSD__) + +#include + +#define lttng_ust_bswap_16(x) bswap16(x) +#define lttng_ust_bswap_32(x) bswap32(x) +#define lttng_ust_bswap_64(x) bswap64(x) + +#define LTTNG_UST_BYTE_ORDER BYTE_ORDER +#define LTTNG_UST_LITTLE_ENDIAN LITTLE_ENDIAN +#define LTTNG_UST_BIG_ENDIAN BIG_ENDIAN +#define LTTNG_UST_FLOAT_WORD_ORDER BYTE_ORDER + +#else +#error "Please add support for your OS." +#endif #endif /* _LTTNG_UST_ENDIAN_H */