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 /** 9 * @file 10 * 11 * RTE ACL DPDK/OS dependent file. 12 */ 13 14 #include <stdint.h> 15 #include <stddef.h> 16 #include <inttypes.h> 17 #include <limits.h> 18 #include <ctype.h> 19 #include <string.h> 20 #include <errno.h> 21 #include <stdio.h> 22 #include <stdarg.h> 23 #include <stdlib.h> 24 #include <sys/queue.h> 25 26 /* 27 * Common defines. 28 */ 29 30 #define DIM(x) RTE_DIM(x) 31 32 #include <rte_common.h> 33 #include <rte_vect.h> 34 #include <rte_memory.h> 35 #include <rte_log.h> 36 #include <rte_memcpy.h> 37 #include <rte_prefetch.h> 38 #include <rte_byteorder.h> 39 #include <rte_branch_prediction.h> 40 #include <rte_malloc.h> 41 #include <rte_eal.h> 42 #include <rte_per_lcore.h> 43 #include <rte_errno.h> 44 #include <rte_string_fns.h> 45 #include <rte_cpuflags.h> 46 #include <rte_debug.h> 47 48 #endif /* _RTE_ACL_OSDEP_H_ */ 49