aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalph Sennhauser <ralph.sennhauser@gmail.com>2016-09-07 16:51:08 +0200
committerZoltan HERPAI <wigyori@uid0.hu>2016-09-07 16:51:08 +0200
commit3f36cfced20c652383213a5c1d94ff096c71c29c (patch)
tree12ac977f6c00cdb688175fe25f61d92cf8cd228e
parent7f5b1dbcd6ca0d93c3bd0189b03afdb0378ce6ef (diff)
downloadmaster-187ad058-3f36cfced20c652383213a5c1d94ff096c71c29c.tar.gz
master-187ad058-3f36cfced20c652383213a5c1d94ff096c71c29c.tar.bz2
master-187ad058-3f36cfced20c652383213a5c1d94ff096c71c29c.zip
perf: drop sched_getcpu wrapper
Current musl already provides sched_getcpu Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
-rw-r--r--package/devel/perf/musl-compat.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/package/devel/perf/musl-compat.h b/package/devel/perf/musl-compat.h
index 8ce97bea88..83aa00a7c8 100644
--- a/package/devel/perf/musl-compat.h
+++ b/package/devel/perf/musl-compat.h
@@ -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