continue work on resourceview
[lttv.git] / ltt / branches / poly / lttv / modules / gui / resourceview / processlist.h
index d94846030ea798d57aece063eb7cec4d5dc237b7..1e38afc16e4ddfe6f5e3a09d45e12dc168bf73ef 100644 (file)
@@ -16,8 +16,6 @@
  * MA 02111-1307, USA.
  */
 
-
-
 #ifndef _PROCESS_LIST_H
 #define _PROCESS_LIST_H
 
 /* Enumeration of the columns */
 enum
 {
-  PROCESS_COLUMN,
-  BRAND_COLUMN,
-  PID_COLUMN,
-  TGID_COLUMN,
-  PPID_COLUMN,
-  CPU_COLUMN,
-  BIRTH_S_COLUMN,
-  BIRTH_NS_COLUMN,
-  TRACE_COLUMN,
+  NAME_COLUMN,
   N_COLUMNS
 };
 
 
-typedef struct _ProcessInfo {
-  
-  guint pid;
-  guint tgid;
-  guint cpu;
-  guint ppid;
-  LttTime birth;
-  guint trace_num;
-
- // gint height_cache;
-
-} ProcessInfo;
+typedef struct _ResourceInfo {
+  guint name;
+} ResourceInfo;
 
-typedef struct _HashedProcessData {
+typedef struct _HashedResourceData {
  
   GdkPixmap *pixmap;  // Pixmap slice containing drawing buffer for the PID
   gint height; // height of the pixmap
@@ -93,7 +74,7 @@ typedef struct _HashedProcessData {
   LttTime next_good_time; /* precalculate the next time where the next
                              pixel is.*/
 
-} HashedProcessData;
+} HashedResourceData;
   
 struct _ProcessList {
   
This page took 0.024472 seconds and 4 git commands to generate.