add process names
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 21 Apr 2006 01:14:04 +0000 (01:14 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 21 Apr 2006 01:14:04 +0000 (01:14 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@1764 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/configure.in
ltt/branches/poly/lttv/lttv/print.c

index 31c68909acaf324a8659f1d3f6dc95525e2406a9..bef10d9f1acb43204756b0fa11af523dd9d833f6 100644 (file)
@@ -23,7 +23,7 @@
 AC_PREREQ(2.57)
 AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
 #AC_WITH_LTDL  # not needed ?
-AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.35-03042006)
+AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.36-20042006)
 AM_CONFIG_HEADER(config.h)
 AM_PROG_LIBTOOL
 
index 812ecef5409f652cf1c6b9ef1813070da11f16d2..6bcb2387fe5f0acccf22ad45a3c0cad419c86e02 100644 (file)
@@ -183,7 +183,8 @@ void lttv_event_to_string(LttEvent *e, GString *s,
         g_quark_to_string(ltt_tracefile_name(tfs->parent.tf)),
         cpu);
     /* Print the process id and the state/interrupt type of the process */
-    g_string_append_printf(s,", %u, %u, 0x%llX, %s", process->pid,
+    g_string_append_printf(s,", %u, %s, %u, 0x%llX, %s", process->pid,
+                               g_quark_to_string(process->name),
                    process->ppid, process->current_function,
                    g_quark_to_string(process->state->t));
   }
This page took 0.025849 seconds and 4 git commands to generate.