diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-12-13 16:50:26 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-12-14 10:57:15 -0500 |
commit | 13df45ca1c9a430d5f53862854070fcc324e015c (patch) | |
tree | d20c0bfe5d0caedb2f2dd1f0959255127a7e9a26 /tools/perf/util/thread.c | |
parent | 301a0b020210360c6e441c7765521248bc87d58e (diff) |
perf session: Register the idle thread in perf_session__process_events
No need for all tools to register it and then immediately call
perf_session__process_events.
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: <1260741029-4430-3-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/thread.c')
-rw-r--r-- | tools/perf/util/thread.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/perf/util/thread.c b/tools/perf/util/thread.c index b68a00ea4121..5c0ab14f3dba 100644 --- a/tools/perf/util/thread.c +++ b/tools/perf/util/thread.c | |||
@@ -161,18 +161,6 @@ struct thread *threads__findnew(pid_t pid) | |||
161 | return th; | 161 | return th; |
162 | } | 162 | } |
163 | 163 | ||
164 | struct thread *register_idle_thread(void) | ||
165 | { | ||
166 | struct thread *thread = threads__findnew(0); | ||
167 | |||
168 | if (!thread || thread__set_comm(thread, "swapper")) { | ||
169 | fprintf(stderr, "problem inserting idle task.\n"); | ||
170 | exit(-1); | ||
171 | } | ||
172 | |||
173 | return thread; | ||
174 | } | ||
175 | |||
176 | static void map_groups__remove_overlappings(struct map_groups *self, | 164 | static void map_groups__remove_overlappings(struct map_groups *self, |
177 | struct map *map) | 165 | struct map *map) |
178 | { | 166 | { |