diff options
Diffstat (limited to 'tools/perf/util/symbol.h')
-rw-r--r-- | tools/perf/util/symbol.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h index 766294735f93..d61f35074997 100644 --- a/tools/perf/util/symbol.h +++ b/tools/perf/util/symbol.h | |||
@@ -49,12 +49,21 @@ struct symbol { | |||
49 | char name[0]; | 49 | char name[0]; |
50 | }; | 50 | }; |
51 | 51 | ||
52 | struct strlist; | ||
53 | |||
52 | struct symbol_conf { | 54 | struct symbol_conf { |
53 | unsigned short priv_size; | 55 | unsigned short priv_size; |
54 | bool try_vmlinux_path, | 56 | bool try_vmlinux_path, |
55 | use_modules, | 57 | use_modules, |
56 | sort_by_name; | 58 | sort_by_name; |
57 | const char *vmlinux_name; | 59 | const char *vmlinux_name; |
60 | char *dso_list_str, | ||
61 | *comm_list_str, | ||
62 | *sym_list_str, | ||
63 | *col_width_list_str; | ||
64 | struct strlist *dso_list, | ||
65 | *comm_list, | ||
66 | *sym_list; | ||
58 | }; | 67 | }; |
59 | 68 | ||
60 | extern struct symbol_conf symbol_conf; | 69 | extern struct symbol_conf symbol_conf; |