diff options
| author | David Ahern <[email protected]> | 2011-12-22 18:30:03 +0000 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2011-12-23 18:35:00 +0000 |
| commit | 64aab93cdffb3967642ffab954395ae2400c0b06 (patch) | |
| tree | 9f5313f3d19c8619f6d7f6b0e35cc2764d7ba1f1 /tools/perf/builtin-script.c | |
| parent | perf tools: Look up thread names for system wide profiling (diff) | |
| download | kernel-64aab93cdffb3967642ffab954395ae2400c0b06.tar.gz kernel-64aab93cdffb3967642ffab954395ae2400c0b06.zip | |
perf script: look up thread using tid instead of pid
This allows the thread name to be dispalyed when dumping
events:
myapp 25118 [000] 450385.538815: context-switches ...
myapp:worker 25119 [000] 450385.538894: context-switches ...
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: David Ahern <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/builtin-script.c')
| -rw-r--r-- | tools/perf/builtin-script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index ea71c5e1a94f..d71b745da06e 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c @@ -443,7 +443,7 @@ static int process_sample_event(struct perf_tool *tool __used, struct machine *machine) { struct addr_location al; - struct thread *thread = machine__findnew_thread(machine, event->ip.pid); + struct thread *thread = machine__findnew_thread(machine, event->ip.tid); if (thread == NULL) { pr_debug("problem processing %d event, skipping it.\n", |
