diff options
author | Markus Trippelsdorf <markus@trippelsdorf.de> | 2012-04-04 10:45:27 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-04-04 11:59:00 +0200 |
commit | 7b78f13603c6fcb64e020a0bbe31a651ea2b657b (patch) | |
tree | 937cf80df31a6fe5a8f233bf30242447e3e57a56 /tools/perf | |
parent | 7b8e6da46b921d30ac1553cac56d8fb74f0b431d (diff) | |
download | linux-7b78f13603c6fcb64e020a0bbe31a651ea2b657b.tar.gz linux-7b78f13603c6fcb64e020a0bbe31a651ea2b657b.tar.bz2 linux-7b78f13603c6fcb64e020a0bbe31a651ea2b657b.zip |
perf tools: Fix getrusage() related build failure on glibc trunk
On a system running glibc trunk perf doesn't build:
CC builtin-sched.o
builtin-sched.c: In function ‘get_cpu_usage_nsec_parent’: builtin-sched.c:399:16: error: storage size of ‘ru’ isn’t known builtin-sched.c:403:2: error: implicit declaration of function ‘getrusage’ [-Werror=implicit-function-declaration]
[...]
Fix it by including sys/resource.h.
Signed-off-by: Markus Trippelsdorf <markus@trippelsdorf.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/20120404084527.GA294@x4
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-sched.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index fb8b5f83b4a0..1cad3af4bf4c 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c @@ -17,6 +17,7 @@ #include "util/debug.h" #include <sys/prctl.h> +#include <sys/resource.h> #include <semaphore.h> #include <pthread.h> |