fix trace number for 64 bits
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 6 Apr 2007 22:06:17 +0000 (22:06 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 6 Apr 2007 22:06:17 +0000 (22:06 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@2481 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c

index 10c6bd65dfa1c586a92c4ced9ceff7b69ee74ecc..04be3d2187f3c111b0e769546f4f2f2bf0b333a0 100644 (file)
@@ -51,13 +51,13 @@ gint process_sort_func  ( GtkTreeModel *model,
   gchar *a_brand;
   guint a_pid, a_tgid, a_ppid, a_cpu;
   gulong a_birth_s, a_birth_ns;
-  gulong a_trace;
+  guint a_trace;
 
   gchar *b_name;
   gchar *b_brand;
   guint b_pid, b_tgid, b_ppid, b_cpu;
   gulong b_birth_s, b_birth_ns;
-  gulong b_trace;
+  guint b_trace;
 
   gtk_tree_model_get(model,
            it_a,
@@ -364,7 +364,7 @@ ProcessList *processlist_construct(void)
               G_TYPE_UINT,
               G_TYPE_ULONG,
               G_TYPE_ULONG,
-              G_TYPE_ULONG);
+              G_TYPE_UINT);
 
 
   process_list->process_list_widget = 
@@ -630,7 +630,7 @@ int processlist_add(  ProcessList *process_list,
   HashedProcessData *hashed_process_data = g_new(HashedProcessData, 1);
   *pm_hashed_process_data = hashed_process_data;
   *pm_process_info = Process_Info;
-  
   Process_Info->pid = pid;
   Process_Info->tgid = tgid;
   if(pid == 0)
This page took 0.024334 seconds and 4 git commands to generate.