perf tools: Do not provide dup sched_getcpu() prototype on Android
authorArnaldo Carvalho de Melo <[email protected]>
Thu, 14 Jul 2016 15:02:04 +0000 (12:02 -0300)
committerArnaldo Carvalho de Melo <[email protected]>
Thu, 14 Jul 2016 15:02:04 +0000 (12:02 -0300)
The Bionic libc has this definition, so don't duplicate it.

Cc: Adrian Hunter <[email protected]>
Cc: Chris Phlipot <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Wang Nan <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/util.h

index 6178cab8237490c4779e0ae3d72b72aa1e0fab9a..843cbba8f9d3f8964455ecf0267db1e8b9c3a22d 100644 (file)
@@ -360,7 +360,7 @@ void print_binary(unsigned char *data, size_t len,
                  size_t bytes_per_line, print_binary_t printer,
                  void *extra);
 
-#ifndef __GLIBC__
+#if !defined(__GLIBC__) && !defined(__ANDROID__)
 extern int sched_getcpu(void);
 #endif