2019-06-25 11:12:58 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
2017-04-21 10:43:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _VMXNET3_OSDEP_H
|
|
|
|
#define _VMXNET3_OSDEP_H
|
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2017-04-21 10:43:26 +00:00
|
|
|
typedef uint64_t uint64;
|
|
|
|
typedef uint32_t uint32;
|
|
|
|
typedef uint16_t uint16;
|
|
|
|
typedef uint8_t uint8;
|
|
|
|
|
|
|
|
#ifndef UNLIKELY
|
|
|
|
#define UNLIKELY(x) __builtin_expect((x),0)
|
|
|
|
#endif /* unlikely */
|
|
|
|
|
|
|
|
#endif /* _VMXNET3_OSDEP_H */
|