diff options
Diffstat (limited to 'tools/perf/util/session.h')
-rw-r--r-- | tools/perf/util/session.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/perf/util/session.h b/tools/perf/util/session.h index 759d96022a39..a8f3a49ca43a 100644 --- a/tools/perf/util/session.h +++ b/tools/perf/util/session.h | |||
@@ -6,7 +6,9 @@ | |||
6 | #include "thread.h" | 6 | #include "thread.h" |
7 | #include <linux/rbtree.h> | 7 | #include <linux/rbtree.h> |
8 | 8 | ||
9 | struct ip_callchain; | ||
9 | struct thread; | 10 | struct thread; |
11 | struct symbol; | ||
10 | struct symbol_conf; | 12 | struct symbol_conf; |
11 | 13 | ||
12 | struct perf_session { | 14 | struct perf_session { |
@@ -50,6 +52,11 @@ void perf_session__delete(struct perf_session *self); | |||
50 | int perf_session__process_events(struct perf_session *self, | 52 | int perf_session__process_events(struct perf_session *self, |
51 | struct perf_event_ops *event_ops); | 53 | struct perf_event_ops *event_ops); |
52 | 54 | ||
55 | struct symbol **perf_session__resolve_callchain(struct perf_session *self, | ||
56 | struct thread *thread, | ||
57 | struct ip_callchain *chain, | ||
58 | struct symbol **parent); | ||
59 | |||
53 | int perf_header__read_build_ids(int input, u64 offset, u64 file_size); | 60 | int perf_header__read_build_ids(int input, u64 offset, u64 file_size); |
54 | 61 | ||
55 | #endif /* __PERF_SESSION_H */ | 62 | #endif /* __PERF_SESSION_H */ |