perf tools: Print the thread's tid on PERF_RECORD_COMM events when -D is asked
authorArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 24 Feb 2015 20:20:31 +0000 (17:20 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 24 Feb 2015 20:34:00 +0000 (17:34 -0300)
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

index 6c6d044..9e806d8 100644 (file)
@@ -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,