diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-02-08 13:27:39 -0200 | 
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-02-08 15:03:36 -0200 | 
| commit | ce6f4fab4059cd72638a0cfa596a8ee2c79c1c8e (patch) | |
| tree | 00416d7a54d9ef265b9358022e804217dcb5d870 /tools/perf/util/top.h | |
| parent | e3087b80aa0bceda9863f33307460f3ba79f2b15 (diff) | |
| download | olio-linux-3.10-ce6f4fab4059cd72638a0cfa596a8ee2c79c1c8e.tar.xz olio-linux-3.10-ce6f4fab4059cd72638a0cfa596a8ee2c79c1c8e.zip  | |
perf annotate: Move locking to struct annotation
Since we'll need it when implementing the live annotate TUI browser.
This also simplifies things a bit by having the list head for the source
code to be in the dynamicly allocated part of struct annotation, that
way we don't have to pass it around, it can be found from the struct
symbol that is passed everywhere.
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/top.h')
| -rw-r--r-- | tools/perf/util/top.h | 6 | 
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/perf/util/top.h b/tools/perf/util/top.h index 62e32939f3d..4f769f47e19 100644 --- a/tools/perf/util/top.h +++ b/tools/perf/util/top.h @@ -11,11 +11,6 @@  struct perf_evlist;  struct perf_evsel; -struct sym_entry_source { -	struct list_head	head; -	pthread_mutex_t		lock; -}; -  struct sym_entry {  	struct rb_node		rb_node;  	struct list_head	node; @@ -24,7 +19,6 @@ struct sym_entry {  	int			skip;  	u8			origin;  	struct map		*map; -	struct sym_entry_source	*src;  	unsigned long		count[0];  };  |