Focus works
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / eventhooks.c
index 5b7d22b31a0df4fa465e6b559c1d561f373fdb06..13c1e296280ffc50a95a99858f2a932376d5dafb 100644 (file)
@@ -567,6 +567,11 @@ int draw_before_hook(void *hook_data, void *call_data)
         }
       }
     }
+  } else if(strcmp(
+          ltt_eventtype_name(ltt_event_eventtype(e)),"process") == 0) {
+    /* We are in a fork or exit event */
+
+
   }
 
   
@@ -1290,7 +1295,13 @@ int draw_after_hook(void *hook_data, void *call_data)
           width,
           &hashed_process_data_in->x);
     }
+  } else if(strcmp(
+          ltt_eventtype_name(ltt_event_eventtype(e)),"process") == 0) {
+    /* We are in a fork or exit event */
+
+
   }
+
   return 0;
 
 
This page took 0.022381 seconds and 4 git commands to generate.