summaryrefslogtreecommitdiff
path: root/tools/perf/util/top.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/top.h')
-rw-r--r--tools/perf/util/top.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/tools/perf/util/top.h b/tools/perf/util/top.h
index 611370f..fe44afb 100644
--- a/tools/perf/util/top.h
+++ b/tools/perf/util/top.h
@@ -11,17 +11,8 @@
struct perf_evlist;
struct perf_evsel;
-struct source_line {
- u64 eip;
- unsigned long count[MAX_COUNTERS]; /* FIXME */
- char *line;
- struct source_line *next;
-};
-
struct sym_entry_source {
- struct source_line *source;
- struct source_line *lines;
- struct source_line **lines_tail;
+ struct list_head head;
pthread_mutex_t lock;
};
@@ -31,7 +22,6 @@ struct sym_entry {
unsigned long snap_count;
double weight;
int skip;
- u16 name_len;
u8 origin;
struct map *map;
struct sym_entry_source *src;