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>
This commit is contained in:
parent
682b335a5b
commit
36a3e6461a
|
@ -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:
|
||||
|
|
|
@ -139,6 +139,8 @@ int kallsyms__parse(void *arg, int (*process_symbol)(void *arg, const char *name
|
|||
char type, u64 start));
|
||||
|
||||
int symbol__init(void);
|
||||
bool symbol_type__is_a(char symbol_type, enum map_type map_type);
|
||||
|
||||
int perf_session__create_kernel_maps(struct perf_session *self);
|
||||
|
||||
extern struct list_head dsos__user, dsos__kernel;
|
||||
|
|
Loading…
Reference in New Issue