blob: 69b161ea65bf54344da726a878d8eaaa2e1a8531 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright 2018 Mellanox Technologies, Ltd
*/
#include <rte_common.h>
#include <rte_cpuflags.h>
unsigned long
rte_cpu_getauxval(unsigned long type __rte_unused)
{
/* not implemented */
return 0;
}
int
rte_cpu_strcmp_auxval(unsigned long type __rte_unused,
const char *str __rte_unused)
{
/* not implemented */
return -1;
}
|