diff options
Diffstat (limited to 'tools/perf/config/feature-checks/test-libnuma.c')
-rw-r--r-- | tools/perf/config/feature-checks/test-libnuma.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/test-libnuma.c b/tools/perf/config/feature-checks/test-libnuma.c new file mode 100644 index 000000000000..4763d9cd587d --- /dev/null +++ b/tools/perf/config/feature-checks/test-libnuma.c | |||
@@ -0,0 +1,9 @@ | |||
1 | #include <numa.h> | ||
2 | #include <numaif.h> | ||
3 | |||
4 | int main(void) | ||
5 | { | ||
6 | numa_available(); | ||
7 | |||
8 | return 0; | ||
9 | } | ||