]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/lib/librte_eal/bsdapp/eal/eal_cpuflags.c
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_eal / bsdapp / eal / eal_cpuflags.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2018 Mellanox Technologies, Ltd
3 */
4
5 #include <rte_common.h>
6 #include <rte_cpuflags.h>
7
8 unsigned long
9 rte_cpu_getauxval(unsigned long type __rte_unused)
10 {
11 /* not implemented */
12 return 0;
13 }
14
15 int
16 rte_cpu_strcmp_auxval(unsigned long type __rte_unused,
17 const char *str __rte_unused)
18 {
19 /* not implemented */
20 return -1;
21 }