summaryrefslogtreecommitdiff
path: root/tools/perf/util/map_symbol.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/map_symbol.h')
-rw-r--r--tools/perf/util/map_symbol.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/perf/util/map_symbol.h b/tools/perf/util/map_symbol.h
index e370bb32ed47..7437e319f4a3 100644
--- a/tools/perf/util/map_symbol.h
+++ b/tools/perf/util/map_symbol.h
@@ -4,12 +4,13 @@
#include <linux/types.h>
+struct thread;
struct maps;
struct map;
struct symbol;
struct map_symbol {
- struct maps *maps;
+ struct thread *thread;
struct map *map;
struct symbol *sym;
};