X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2FguiControlFlow%2FProcess_List.h;h=d3272160e4fd6ee2ee9222f2ba60e6b6af233030;hb=8d70e03bc0026687c050287b3dc9b3ec42281191;hp=eef9590fe1492db03bd84636bde8714337498536;hpb=14963be07f6a9c7c2db0d988f557b870ebd5dead;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/guiControlFlow/Process_List.h b/ltt/branches/poly/lttv/modules/guiControlFlow/Process_List.h index eef9590f..d3272160 100644 --- a/ltt/branches/poly/lttv/modules/guiControlFlow/Process_List.h +++ b/ltt/branches/poly/lttv/modules/guiControlFlow/Process_List.h @@ -29,22 +29,20 @@ typedef struct _ProcessInfo { typedef struct _HashedProcessData { - GtkTreeRowReference *RowRef; + GtkTreeRowReference *row_ref; DrawContext *draw_context; } HashedProcessData; struct _ProcessList { - GtkWidget *process_list_VC; - GtkListStore *Store_M; + GtkWidget *process_list_widget; + GtkListStore *list_store; /* A hash table by PID to speed up process position find in the list */ GHashTable *process_hash; guint number_of_process; - gboolean Test_Process_Sent; - }; @@ -56,8 +54,7 @@ GtkWidget *processlist_get_widget(ProcessList *process_list); // out : success (0) and height int processlist_add(ProcessList *process_list, guint pid, LttTime *birth, - gchar *name, - guint *height, HashedProcessData **hashed_process_data); + gchar *name, guint *height, HashedProcessData **hashed_process_data); // out : success (0) and height int processlist_remove(ProcessList *process_list, guint pid, LttTime *birth);