Message ID | 20210704203621.5612-2-wagi@monom.org |
---|---|
State | New |
Headers | show |
Series | Fix a few fallouts | expand |
diff --git a/src/lib/rt-numa.c b/src/lib/rt-numa.c index babcc634d57e..2d34ae36cc03 100644 --- a/src/lib/rt-numa.c +++ b/src/lib/rt-numa.c @@ -68,13 +68,11 @@ int cpu_for_thread_sp(int thread_num, int max_cpus, struct bitmask *cpumask) int cpu_for_thread_ua(int thread_num, int max_cpus) { int res, num_cpus, i, m, cpu; - pthread_t thread; cpu_set_t cpuset; - thread = pthread_self(); CPU_ZERO(&cpuset); - res = pthread_getaffinity_np(thread, sizeof(cpu_set_t), &cpuset); + res = sched_getaffinity(0, sizeof(cpu_set_t), &cpuset); if (res != 0) fatal("pthread_getaffinity_np failed: %s\n", strerror(res));