diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-01-14 20:45:29 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-01-16 04:58:48 -0500 |
commit | 59ee68ecd1561a233fb6ad351980bea8402533e7 (patch) | |
tree | 9b095330dfbf754cce495c8bc8ce187d1340d8b6 /tools/perf/util/thread.h | |
parent | 18c3daa4961b9fa1f2db0711d93c0acf0c39fd12 (diff) |
perf symbols: Create thread__find_addr_map from thread__find_addr_location
Because some tools will only want to know with maps had hits,
not needing the full symbol resolution done by
thread__find_addr_location.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1263519930-22803-3-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/thread.h')
-rw-r--r-- | tools/perf/util/thread.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/util/thread.h b/tools/perf/util/thread.h index c06c13535a70..e35653c1817c 100644 --- a/tools/perf/util/thread.h +++ b/tools/perf/util/thread.h | |||
@@ -48,6 +48,11 @@ static inline struct map *thread__find_map(struct thread *self, | |||
48 | return self ? map_groups__find(&self->mg, type, addr) : NULL; | 48 | return self ? map_groups__find(&self->mg, type, addr) : NULL; |
49 | } | 49 | } |
50 | 50 | ||
51 | void thread__find_addr_map(struct thread *self, | ||
52 | struct perf_session *session, u8 cpumode, | ||
53 | enum map_type type, u64 addr, | ||
54 | struct addr_location *al); | ||
55 | |||
51 | void thread__find_addr_location(struct thread *self, | 56 | void thread__find_addr_location(struct thread *self, |
52 | struct perf_session *session, u8 cpumode, | 57 | struct perf_session *session, u8 cpumode, |
53 | enum map_type type, u64 addr, | 58 | enum map_type type, u64 addr, |