Skip to content
Snippets Groups Projects
Commit 01287307 authored by Ralph Sennhauser's avatar Ralph Sennhauser Committed by Jo-Philipp Wich
Browse files

perf: drop sched_getcpu wrapper


Current musl already provides sched_getcpu

Signed-off-by: default avatarRalph Sennhauser <ralph.sennhauser@gmail.com>
parent 91362e7a
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,6 @@
#include <asm/unistd.h>
#include <unistd.h>
#include <stdio.h>
#include <sched.h>
#undef _IOWR
#undef _IOR
......@@ -40,21 +39,5 @@ static inline long sysconf_wrap(int name)
#define sysconf(_n) sysconf_wrap(_n)
static inline int compat_sched_getcpu(void)
{
#ifdef __NR_getcpu
unsigned int val;
if (syscall(__NR_getcpu, &val))
return -1;
return val;
#else
return -1;
#endif
}
#define sched_getcpu compat_sched_getcpu
#endif
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment