diff options
Diffstat (limited to 'tools/perf/util/stat.h')
-rw-r--r-- | tools/perf/util/stat.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/perf/util/stat.h b/tools/perf/util/stat.h index bcb376e1b3a7..14fe3e548229 100644 --- a/tools/perf/util/stat.h +++ b/tools/perf/util/stat.h | |||
@@ -5,13 +5,12 @@ | |||
5 | #include <linux/types.h> | 5 | #include <linux/types.h> |
6 | #include <stdio.h> | 6 | #include <stdio.h> |
7 | #include <sys/types.h> | 7 | #include <sys/types.h> |
8 | #include <sys/time.h> | ||
9 | #include <sys/resource.h> | 8 | #include <sys/resource.h> |
10 | #include <sys/wait.h> | ||
11 | #include "rblist.h" | 9 | #include "rblist.h" |
12 | #include "perf.h" | ||
13 | #include "event.h" | 10 | #include "event.h" |
14 | 11 | ||
12 | struct timespec; | ||
13 | |||
15 | struct stats { | 14 | struct stats { |
16 | double n, mean, M2; | 15 | double n, mean, M2; |
17 | u64 max, min; | 16 | u64 max, min; |
@@ -199,6 +198,8 @@ int perf_stat_process_counter(struct perf_stat_config *config, | |||
199 | struct perf_tool; | 198 | struct perf_tool; |
200 | union perf_event; | 199 | union perf_event; |
201 | struct perf_session; | 200 | struct perf_session; |
201 | struct target; | ||
202 | |||
202 | int perf_event__process_stat_event(struct perf_session *session, | 203 | int perf_event__process_stat_event(struct perf_session *session, |
203 | union perf_event *event); | 204 | union perf_event *event); |
204 | 205 | ||