* [tip:perf/core] perf tools: Print the thread' s tid on PERF_RECORD_COMM events when -D is asked
@ 2015-02-26 11:35 tip-bot for Arnaldo Carvalho de Melo
0 siblings, 0 replies; only message in thread
From: tip-bot for Arnaldo Carvalho de Melo @ 2015-02-26 11:35 UTC (permalink / raw)
To: linux-tip-commits
Cc: acme, hpa, mingo, linux-kernel, fweisbec, dsahern, namhyung,
tglx, dzickus, eranian, bp, adrian.hunter, jolsa
Commit-ID: 506740654db4fa5b6e1229147cee3cf8c7e07eca
Gitweb: http://git.kernel.org/tip/506740654db4fa5b6e1229147cee3cf8c7e07eca
Author: Arnaldo Carvalho de Melo <acme@redhat.com>
AuthorDate: Tue, 24 Feb 2015 17:20:31 -0300
Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Tue, 24 Feb 2015 17:34:00 -0300
perf tools: Print the thread's tid on PERF_RECORD_COMM events when -D is asked
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: David Ahern <dsahern@gmail.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-fmto8ft6jrtwz09dxn5d4z8w@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/util/event.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c
index 6c6d044..9e806d8 100644
--- a/tools/perf/util/event.c
+++ b/tools/perf/util/event.c
@@ -615,7 +615,7 @@ size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp)
else
s = "";
- return fprintf(fp, "%s: %s:%d\n", s, event->comm.comm, event->comm.tid);
+ return fprintf(fp, "%s: %s:%d/%d\n", s, event->comm.comm, event->comm.pid, event->comm.tid);
}
int perf_event__process_comm(struct perf_tool *tool __maybe_unused,
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2015-02-26 11:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-26 11:35 [tip:perf/core] perf tools: Print the thread' s tid on PERF_RECORD_COMM events when -D is asked tip-bot for Arnaldo Carvalho de Melo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome