5562N/A/*
5562N/A * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
5562N/A */
5562N/A
5562N/A/*
7118N/A * Redistribution and use in source and binary forms, with or without
7118N/A * modification, are permitted provided that the following conditions are met:
5562N/A *
5562N/A * 1. Redistributions of source code must retain the above copyright notice,
5562N/A * this list of conditions and the following disclaimer.
5562N/A *
5562N/A * 2. Redistributions in binary form must reproduce the above copyright notice,
5562N/A * this list of conditions and the following disclaimer in the documentation
5562N/A * and/or other materials provided with the distribution.
5562N/A *
5562N/A * 3. Neither the name of the copyright holder nor the names of its contributors
7118N/A * may be used to endorse or promote products derived from this software
7118N/A * without specific prior written permission.
5562N/A *
5562N/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
7118N/A * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
7118N/A * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
7118N/A * ARE DISCLAIMED.
7118N/A * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
7118N/A * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
7118N/A * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
7118N/A * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
7118N/A * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
7118N/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
7118N/A * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5562N/A */
5562N/A
5562N/A#ifndef _OS_HEADER_H
5562N/A#define _OS_HEADER_H
5562N/A/*
5562N/A * os_header.h
5562N/A *
5562N/A * Operating system specific defines.
5562N/A */
5562N/A#if defined(THREADX) || defined(NO_OS_ARM)
5562N/A
5562N/A/* THREADX/ARM is 32 bit */
5562N/A#define OS_PRIx64 "llx"
5562N/A#define OS_U64DEF "unsigned long long"
5562N/A
5562N/A#else /* !THREADX */
5562N/A
5562N/A#ifdef SOLARIS
5562N/A
5562N/A#include "solaris.h"
5562N/A
5562N/A#define OS_PRIx64 PRIx64
5562N/A#define OS_U64DEF "unsigned long"
5562N/A
5562N/A#else /* LINUX */
5562N/A
5562N/A#include <asm-generic/int-ll64.h>
5562N/A#include <endian.h>
5562N/A
5562N/A#if defined HAVE_DECL_BE64TOH_HTOBE64 && !HAVE_DECL_BE64TOH_HTOBE64
5562N/A#define be64toh(x) htonll(x)
5562N/A#define htobe64(x) ntohll(x)
7118N/A#define be32toh(x) htonl(x)
7118N/A#define htobe32(x) ntohl(x)
7118N/A#define be16toh(x) htons(x)
7118N/A#define htobe16(x) ntohs(x)
7118N/A
7118N/A#define be64_to_cpu(x) htonll(x)
7118N/A#define cpu_to_be64(x) ntohll(x)
7118N/A#define be32_to_cpu(x) htonl(x)
7118N/A#define cpu_to_be32(x) ntohl(x)
7118N/A#define be16_to_cpu(x) htons(x)
7118N/A#define cpu_to_be16(x) ntohs(x)
7118N/A
7118N/A#else
7118N/A
7118N/A#define be64_to_cpu(x) be64toh(x)
7118N/A#define cpu_to_be64(x) htobe64(x)
7118N/A#define be32_to_cpu(x) be32toh(x)
7118N/A#define cpu_to_be32(x) htobe32(x)
7118N/A#define be16_to_cpu(x) be16toh(x)
7118N/A#define cpu_to_be16(x) htobe16(x)
7118N/A
7118N/A#define le64_to_cpu(x) le64toh(x)
7118N/A#define cpu_to_le64(x) htole64(x)
7118N/A#define le32_to_cpu(x) le32toh(x)
7118N/A#define cpu_to_le32(x) htole32(x)
7118N/A#define le16_to_cpu(x) le16toh(x)
7118N/A#define cpu_to_le16(x) htole16(x)
7118N/A
5562N/A#endif
5562N/A
7118N/A#if defined(OS_PRIx64)
5562N/A/* Do not override... */
5562N/A#elif defined(_STDINT_H)
5562N/A#include <inttypes.h>
5562N/A#define OS_PRIx64 PRIx64
5562N/A#else
5562N/A/*
5562N/A * Linux statically defines 64 bit words as type 'long long'
5562N/A * regardless of 64 bit vs 32 bit compilation. However,
5562N/A * the PRIx64 macro expands to 'lx' (type long) on 64 bit
5562N/A * compilation, which is incompatible with the Linux 64 bit
5562N/A * word definition.
5562N/A */
5562N/A#define OS_PRIx64 "llx"
5562N/A#define OS_U64DEF "unsigned long long"
5562N/A#endif
5562N/A#endif /* LINUX */
5562N/A#endif /* !THREADX */
5562N/A
5562N/A#endif /* _OS_HEADER_H */