test data sent from hook file, square insert implemented
[lttv.git] / ltt / branches / poly / lttv / modules / guiControlFlow / Process_List.h
index ef38a9a2b7abffdd746c2bd562c05cfcb5fc0631..1daabdd65593f20daa4e3942730180a52cac95d5 100644 (file)
  *     note : the sync with drawing is left to the caller.
  * provides helper function to convert a process unique identifier to
  *     pixels (in height).
+ *
+ * //FIXME : connect the scrolled window adjustment with the list.
  */
 
+typedef struct _ProcessInfo {
+       
+       guint pid;
+       LttTime birth;
+
+} ProcessInfo;
+
+
+
+struct _ProcessList {
+       
+       GtkWidget *Process_List_VC;
+       GtkListStore *Store_M;
+
+       /* A hash table by PID to speed up process position find in the list */
+       GHashTable *Process_Hash;
+       
+       guint Number_Of_Process;
+
+};
+
+
 typedef struct _ProcessList ProcessList;
 
 ProcessList *ProcessList_construct(void);
This page took 0.024512 seconds and 4 git commands to generate.