output change to shown ppid problem, change pid output to unsigned
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Wed, 1 Oct 2003 03:39:25 +0000 (03:39 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Wed, 1 Oct 2003 03:39:25 +0000 (03:39 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@287 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttv/textDump.c

index ccc69c07f6aae270bdaf6fa98df3e1d6ce472443..04bc344d0375ce4b99356d987c879e9cb7dde1c9 100644 (file)
@@ -116,8 +116,9 @@ void lttv_event_to_string(LttEvent *e, LttTracefile *tf, GString *s,
         ltt_eventtype_name(event_type), (long)time.tv_sec, time.tv_nsec,
         ltt_tracefile_name(tf));
     /* Print the process id and the state/interrupt type of the process */
-    g_string_append_printf(s,", %d, %s", tfs->process->pid,
-                          g_quark_to_string(tfs->process->state->t));
+    g_string_append_printf(s,", %u, %u,  %s", tfs->process->pid,
+                   tfs->process->ppid,
+                   g_quark_to_string(tfs->process->state->t));
   }
 
   if(field)
This page took 0.024232 seconds and 4 git commands to generate.