diff options
Diffstat (limited to 'tools/perf/util/event.h')
-rw-r--r-- | tools/perf/util/event.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index bb090257570e..035ecf3c25cc 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h | |||
@@ -149,15 +149,17 @@ void map__delete(struct map *self); | |||
149 | struct map *map__clone(struct map *self); | 149 | struct map *map__clone(struct map *self); |
150 | int map__overlap(struct map *l, struct map *r); | 150 | int map__overlap(struct map *l, struct map *r); |
151 | size_t map__fprintf(struct map *self, FILE *fp); | 151 | size_t map__fprintf(struct map *self, FILE *fp); |
152 | struct symbol *map__find_symbol(struct map *self, u64 addr, | 152 | |
153 | symbol_filter_t filter); | 153 | struct perf_session; |
154 | |||
155 | struct symbol *map__find_symbol(struct map *self, struct perf_session *session, | ||
156 | u64 addr, symbol_filter_t filter); | ||
154 | struct symbol *map__find_symbol_by_name(struct map *self, const char *name, | 157 | struct symbol *map__find_symbol_by_name(struct map *self, const char *name, |
158 | struct perf_session *session, | ||
155 | symbol_filter_t filter); | 159 | symbol_filter_t filter); |
156 | void map__fixup_start(struct map *self); | 160 | void map__fixup_start(struct map *self); |
157 | void map__fixup_end(struct map *self); | 161 | void map__fixup_end(struct map *self); |
158 | 162 | ||
159 | struct perf_session; | ||
160 | |||
161 | int event__synthesize_thread(pid_t pid, | 163 | int event__synthesize_thread(pid_t pid, |
162 | int (*process)(event_t *event, | 164 | int (*process)(event_t *event, |
163 | struct perf_session *session), | 165 | struct perf_session *session), |