1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2010-2014 Intel Corporation 3 */ 4 5 #ifndef _RTE_ACL_OSDEP_H_ 6 #define _RTE_ACL_OSDEP_H_ 7 8 #ifdef __cplusplus 9 extern "C" { 10 #endif 11 12 /** 13 * @file 14 * 15 * RTE ACL DPDK/OS dependent file. 16 */ 17 18 #include <stdint.h> 19 #include <stddef.h> 20 #include <inttypes.h> 21 #include <limits.h> 22 #include <ctype.h> 23 #include <string.h> 24 #include <errno.h> 25 #include <stdio.h> 26 #include <stdarg.h> 27 #include <stdlib.h> 28 #include <sys/queue.h> 29 30 /* 31 * Common defines. 32 */ 33 34 #define DIM(x) RTE_DIM(x) 35 36 #include <rte_common.h> 37 #include <rte_vect.h> 38 #include <rte_memory.h> 39 #include <rte_log.h> 40 #include <rte_memcpy.h> 41 #include <rte_prefetch.h> 42 #include <rte_byteorder.h> 43 #include <rte_branch_prediction.h> 44 #include <rte_malloc.h> 45 #include <rte_eal.h> 46 #include <rte_per_lcore.h> 47 #include <rte_errno.h> 48 #include <rte_string_fns.h> 49 #include <rte_cpuflags.h> 50 #include <rte_debug.h> 51 52 #ifdef __cplusplus 53 } 54 #endif 55 56 #endif /* _RTE_ACL_OSDEP_H_ */ 57