s390x: add single-instruction math functions
[musl.git] / src / sched / sched_getcpu.c
blobe08cfdf13921b43c8a157b31646a6a8f47c5f1f7
1 #define _GNU_SOURCE
2 #include <errno.h>
3 #include <sched.h>
4 #include "syscall.h"
5 #include "atomic.h"
7 #ifdef VDSO_GETCPU_SYM
9 void *__vdsosym(const char *, const char *);
11 static void *volatile vdso_func;
13 typedef long (*getcpu_f)(unsigned *, unsigned *, void *);
15 static long getcpu_init(unsigned *cpu, unsigned *node, void *unused)
17 void *p = __vdsosym(VDSO_GETCPU_VER, VDSO_GETCPU_SYM);
18 getcpu_f f = (getcpu_f)p;
19 a_cas_p(&vdso_func, (void *)getcpu_init, p);
20 return f ? f(cpu, node, unused) : -ENOSYS;
23 static void *volatile vdso_func = (void *)getcpu_init;
25 #endif
27 int sched_getcpu(void)
29 int r;
30 unsigned cpu;
32 #ifdef VDSO_GETCPU_SYM
33 getcpu_f f = (getcpu_f)vdso_func;
34 if (f) {
35 r = f(&cpu, 0, 0);
36 if (!r) return cpu;
37 if (r != -ENOSYS) return __syscall_ret(r);
39 #endif
41 r = __syscall(SYS_getcpu, &cpu, 0, 0);
42 if (!r) return cpu;
43 return __syscall_ret(r);