[OpenWrt-Devel] [PATCH] perf: drop sched_getcpu wrapper

Ralph Sennhauser ralph.sennhauser at gmail.com
Tue Aug 23 14:35:10 EDT 2016


Current musl already provides sched_getcpu

Signed-off-by: Ralph Sennhauser <ralph.sennhauser at gmail.com>
---
 package/devel/perf/musl-compat.h | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/package/devel/perf/musl-compat.h b/package/devel/perf/musl-compat.h
index 8ce97be..83aa00a 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
-- 
2.7.3
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


More information about the openwrt-devel mailing list