diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-01-04 21:19:27 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-01-13 12:09:09 +0300 |
commit | 36a3e6461a0dac8e84b8c94877365324010c151b (patch) | |
tree | a9e0befe55b638af940da648fd81d28e06333e7a /tools/perf/util/symbol.c | |
parent | 682b335a5bccf9e5b7e74380784aa2f145d04444 (diff) | |
download | linux-36a3e6461a0dac8e84b8c94877365324010c151b.tar.xz |
perf symbols: Export symbol_type__is_a
Will be needed by the new HEADER_DSO_INFO feature that will be a
HEADER_BUILD_ID superset, replacing it.
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: <1262629169-22797-2-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/symbol.c')
-rw-r--r-- | tools/perf/util/symbol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index b9e0da57d84b..5dffcd132d15 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c @@ -64,7 +64,7 @@ static void dso__set_sorted_by_name(struct dso *self, enum map_type type) self->sorted_by_name |= (1 << type); } -static bool symbol_type__is_a(char symbol_type, enum map_type map_type) +bool symbol_type__is_a(char symbol_type, enum map_type map_type) { switch (map_type) { case MAP__FUNCTION: |