dpdk/drivers/net/vmxnet3/base/vmxnet3_osdep.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: BSD-3-Clause
   2 * Copyright(c) 2010-2014 Intel Corporation
   3 */
   4
   5#ifndef _VMXNET3_OSDEP_H
   6#define _VMXNET3_OSDEP_H
   7
   8#include <stdbool.h>
   9
  10typedef uint64_t        uint64;
  11typedef uint32_t        uint32;
  12typedef uint16_t        uint16;
  13typedef uint8_t         uint8;
  14
  15#ifndef UNLIKELY
  16#define UNLIKELY(x)  __builtin_expect((x),0)
  17#endif /* unlikely */
  18
  19#endif /* _VMXNET3_OSDEP_H */
  20