a083f8cc77
Since the kernel modules are moved to kernel/ directory, there is no need anymore for the sub-directory eal/ in linux/, freebsd/ and windows/. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: David Marchand <david.marchand@redhat.com>
22 lines
376 B
C
22 lines
376 B
C
/* 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;
|
|
}
|