diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-07-06 18:19:19 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-07-12 21:19:53 +0300 |
commit | 1fbe7df819d9958f139b87014a2f0d5b34da76d5 (patch) | |
tree | d0bcb6cac2d55b457b04b121c6d97b0e0890ff6d /tools/perf/tests/perf-record.c | |
parent | 8a15858904c803450b6763d09f53d9a1dc7ab1c3 (diff) | |
download | linux-1fbe7df819d9958f139b87014a2f0d5b34da76d5.tar.xz |
perf tests: Add missing pthread.h include for CPU_*() macros
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-dfcynqzvecsu55zmpxub9jgv@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/perf-record.c')
-rw-r--r-- | tools/perf/tests/perf-record.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/tests/perf-record.c b/tools/perf/tests/perf-record.c index 3eb67a977b6a..8f2e1de6d0ea 100644 --- a/tools/perf/tests/perf-record.c +++ b/tools/perf/tests/perf-record.c @@ -1,3 +1,6 @@ +/* For the CLR_() macros */ +#include <pthread.h> + #include <sched.h> #include "evlist.h" #include "evsel.h" |