resourceview: display softirq raise in softirq resource
[lttv.git] / ltt / branches / poly / lttv / modules / gui / resourceview / eventhooks.c
index 03ef6f0ba2b105227a4d87aa141acbeca3190810..676dce93f1a53124085639e24389dd873c9c69ac 100644 (file)
@@ -61,7 +61,6 @@
 
 #include <ltt/event.h>
 #include <ltt/time.h>
-#include <ltt/type.h>
 #include <ltt/trace.h>
 
 #include <lttv/lttv.h>
@@ -92,20 +91,20 @@ extern GSList *g_legend_list;
 
 static gint background_ready(void *hook_data, void *call_data)
 {
-  ControlFlowData *control_flow_data = (ControlFlowData *)hook_data;
+  ControlFlowData *resourceview_data = (ControlFlowData *)hook_data;
   LttvTrace *trace = (LttvTrace*)call_data;
 
-  control_flow_data->background_info_waiting--;
+  resourceview_data->background_info_waiting--;
   
-  if(control_flow_data->background_info_waiting == 0) {
+  if(resourceview_data->background_info_waiting == 0) {
     g_message("control flow viewer : background computation data ready.");
 
-    drawing_clear(control_flow_data->drawing);
-    processlist_clear(control_flow_data->process_list);
+    drawing_clear(resourceview_data->drawing);
+    processlist_clear(resourceview_data->process_list);
     gtk_widget_set_size_request(
-      control_flow_data->drawing->drawing_area,
-                -1, processlist_get_height(control_flow_data->process_list));
-    redraw_notify(control_flow_data, NULL);
+      resourceview_data->drawing->drawing_area,
+      -1, processlist_get_height(resourceview_data->process_list));
+    redraw_notify(resourceview_data, NULL);
   }
 
   return 0;
@@ -115,10 +114,10 @@ static gint background_ready(void *hook_data, void *call_data)
 /* Request background computation. Verify if it is in progress or ready first.
  * Only for each trace in the tab's traceset.
  */
-static void request_background_data(ControlFlowData *control_flow_data)
+static void request_background_data(ControlFlowData *resourceview_data)
 {
   LttvTracesetContext * tsc =
-        lttvwindow_get_traceset_context(control_flow_data->tab);
+        lttvwindow_get_traceset_context(resourceview_data->tab);
   gint num_traces = lttv_traceset_number(tsc->ts);
   gint i;
   LttvTrace *trace;
@@ -126,9 +125,9 @@ static void request_background_data(ControlFlowData *control_flow_data)
 
   LttvHooks *background_ready_hook = 
     lttv_hooks_new();
-  lttv_hooks_add(background_ready_hook, background_ready, control_flow_data,
+  lttv_hooks_add(background_ready_hook, background_ready, resourceview_data,
       LTTV_PRIO_DEFAULT);
-  control_flow_data->background_info_waiting = 0;
+  resourceview_data->background_info_waiting = 0;
   
   for(i=0;i<num_traces;i++) {
     trace = lttv_traceset_get(tsc->ts, i);
@@ -145,21 +144,21 @@ static void request_background_data(ControlFlowData *control_flow_data)
          */
         if(!lttvwindowtraces_background_request_find(trace, "state"))
           lttvwindowtraces_background_request_queue(
-              main_window_get_widget(control_flow_data->tab), trace, "state");
-        lttvwindowtraces_background_notify_queue(control_flow_data,
+              main_window_get_widget(resourceview_data->tab), trace, "state");
+        lttvwindowtraces_background_notify_queue(resourceview_data,
                                                  trace,
                                                  ltt_time_infinite,
                                                  NULL,
                                                  background_ready_hook);
-        control_flow_data->background_info_waiting++;
+        resourceview_data->background_info_waiting++;
       } else { /* in progress */
       
-        lttvwindowtraces_background_notify_current(control_flow_data,
+        lttvwindowtraces_background_notify_current(resourceview_data,
                                                    trace,
                                                    ltt_time_infinite,
                                                    NULL,
                                                    background_ready_hook);
-        control_flow_data->background_info_waiting++;
+        resourceview_data->background_info_waiting++;
       }
     } else {
       /* Data ready. By its nature, this viewer doesn't need to have
@@ -167,15 +166,12 @@ static void request_background_data(ControlFlowData *control_flow_data)
        * request is always linked with a redraw.
        */
     }
-    
   }
 
   lttv_hooks_destroy(background_ready_hook);
 }
 
 
-
-
 /**
  * Event Viewer's constructor hook
  *
@@ -190,31 +186,31 @@ h_resourceview(LttvPlugin *plugin)
   LttvPluginTab *ptab = LTTV_PLUGIN_TAB(plugin);
   Tab *tab = ptab->tab;
   g_info("h_guicontrolflow, %p", tab);
-  ControlFlowData *control_flow_data = resourceview(ptab);
+  ControlFlowData *resourceview_data = resourceview(ptab);
   
-  control_flow_data->tab = tab;
+  resourceview_data->tab = tab;
   
   // Unreg done in the GuiControlFlow_Destructor
   lttvwindow_register_traceset_notify(tab,
         traceset_notify,
-        control_flow_data);
+        resourceview_data);
     
   lttvwindow_register_time_window_notify(tab,
                                          update_time_window_hook,
-                                         control_flow_data);
+                                         resourceview_data);
   lttvwindow_register_current_time_notify(tab,
                                           update_current_time_hook,
-                                          control_flow_data);
+                                          resourceview_data);
   lttvwindow_register_redraw_notify(tab,
                                     redraw_notify,
-                                    control_flow_data);
+                                    resourceview_data);
   lttvwindow_register_continue_notify(tab,
                                       continue_notify,
-                                      control_flow_data);
-  request_background_data(control_flow_data);
+                                      resourceview_data);
+  request_background_data(resourceview_data);
   
 
-  return guicontrolflow_get_widget(control_flow_data) ;
+  return guicontrolflow_get_widget(resourceview_data) ;
   
 }
 
@@ -247,9 +243,6 @@ h_legend(LttvPlugin *plugin)
 
   GtkWidget *pixmap = create_pixmap(GTK_WIDGET(legend), "lttv-color-list.png");
   
- // GtkImage *image = GTK_IMAGE(gtk_image_new_from_pixmap(
- //                               GDK_PIXMAP(pixmap), NULL));
-  
   gtk_container_add(GTK_CONTAINER(legend), GTK_WIDGET(pixmap));
 
   gtk_widget_show(GTK_WIDGET(pixmap));
@@ -262,7 +255,7 @@ h_legend(LttvPlugin *plugin)
 
 int event_selected_hook(void *hook_data, void *call_data)
 {
-  ControlFlowData *control_flow_data = (ControlFlowData*) hook_data;
+  ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
   guint *event_number = (guint*) call_data;
 
   g_debug("DEBUG : event selected by main window : %u", *event_number);
@@ -270,55 +263,15 @@ int event_selected_hook(void *hook_data, void *call_data)
   return 0;
 }
 
-/* Function that selects the color of status&exemode line */
-static inline PropertiesLine prepare_s_e_line(LttvProcessState *process)
+static void cpu_set_line_color(PropertiesLine *prop_line, LttvCPUState *s)
 {
-  PropertiesLine prop_line;
-  prop_line.line_width = STATE_LINE_WIDTH;
-  prop_line.style = GDK_LINE_SOLID;
-  prop_line.y = MIDDLE;
-  
-  if(process->state->s == LTTV_STATE_RUN) {
-    if(process->state->t == LTTV_STATE_USER_MODE)
-      prop_line.color = drawing_colors[COL_RUN_USER_MODE];
-    else if(process->state->t == LTTV_STATE_SYSCALL)
-      prop_line.color = drawing_colors[COL_RUN_SYSCALL];
-    else if(process->state->t == LTTV_STATE_TRAP)
-      prop_line.color = drawing_colors[COL_RUN_TRAP];
-    else if(process->state->t == LTTV_STATE_IRQ)
-      prop_line.color = drawing_colors[COL_RUN_IRQ];
-    else if(process->state->t == LTTV_STATE_SOFT_IRQ)
-      prop_line.color = drawing_colors[COL_RUN_SOFT_IRQ];
-    else if(process->state->t == LTTV_STATE_MODE_UNKNOWN)
-      prop_line.color = drawing_colors[COL_MODE_UNKNOWN];
-    else
-      g_assert(FALSE);   /* RUNNING MODE UNKNOWN */
-  } else if(process->state->s == LTTV_STATE_WAIT) {
-    /* We don't show if we wait while in user mode, trap, irq or syscall */
-    prop_line.color = drawing_colors[COL_WAIT];
-  } else if(process->state->s == LTTV_STATE_WAIT_CPU) {
-    /* We don't show if we wait for CPU while in user mode, trap, irq
-     * or syscall */
-    prop_line.color = drawing_colors[COL_WAIT_CPU];
-  } else if(process->state->s == LTTV_STATE_ZOMBIE) {
-    prop_line.color = drawing_colors[COL_ZOMBIE];
-  } else if(process->state->s == LTTV_STATE_WAIT_FORK) {
-    prop_line.color = drawing_colors[COL_WAIT_FORK];
-  } else if(process->state->s == LTTV_STATE_EXIT) {
-    prop_line.color = drawing_colors[COL_EXIT];
-  } else if(process->state->s == LTTV_STATE_UNNAMED) {
-    prop_line.color = drawing_colors[COL_UNNAMED];
-  } else {
-               g_critical("unknown state : %s", g_quark_to_string(process->state->s));
-    g_assert(FALSE);   /* UNKNOWN STATE */
-       }
-  
-  return prop_line;
+  GQuark present_state;
 
-}
+  if(s->mode_stack->len == 0)
+    present_state = LTTV_CPU_UNKNOWN;
+  else
+    present_state = ((GQuark*)s->mode_stack->data)[s->mode_stack->len-1];
 
-static void set_line_color_cpu(PropertiesLine *prop_line, GQuark present_state)
-{
   if(present_state == LTTV_CPU_IDLE) {
     prop_line->color = drawing_colors_cpu[COL_CPU_IDLE];
   }
@@ -328,6 +281,75 @@ static void set_line_color_cpu(PropertiesLine *prop_line, GQuark present_state)
   else if(present_state == LTTV_CPU_IRQ) {
     prop_line->color = drawing_colors_cpu[COL_CPU_IRQ];
   }
+  else if(present_state == LTTV_CPU_SOFT_IRQ) {
+    prop_line->color = drawing_colors_cpu[COL_CPU_SOFT_IRQ];
+  }
+  else if(present_state == LTTV_CPU_TRAP) {
+    prop_line->color = drawing_colors_cpu[COL_CPU_TRAP];
+  } else {
+    prop_line->color = drawing_colors_cpu[COL_CPU_UNKNOWN];
+  }
+}
+
+static void irq_set_line_color(PropertiesLine *prop_line, LttvIRQState *s)
+{
+  GQuark present_state;
+  if(s->mode_stack->len == 0)
+    present_state = LTTV_IRQ_UNKNOWN;
+  else
+    present_state = ((GQuark*)s->mode_stack->data)[s->mode_stack->len-1];
+
+  if(present_state == LTTV_IRQ_IDLE) {
+    prop_line->color = drawing_colors_irq[COL_IRQ_IDLE];
+  }
+  else if(present_state == LTTV_IRQ_BUSY) {
+    prop_line->color = drawing_colors_irq[COL_IRQ_BUSY];
+  }
+  else {
+    prop_line->color = drawing_colors_irq[COL_IRQ_UNKNOWN];
+  }
+}
+
+static void soft_irq_set_line_color(PropertiesLine *prop_line, LttvSoftIRQState *s)
+{
+  GQuark present_state;
+  if(s->running)
+    prop_line->color = drawing_colors_soft_irq[COL_SOFT_IRQ_BUSY];
+  else if(s->pending)
+    prop_line->color = drawing_colors_soft_irq[COL_SOFT_IRQ_PENDING];
+  else
+    prop_line->color = drawing_colors_soft_irq[COL_SOFT_IRQ_IDLE];
+}
+
+static void trap_set_line_color(PropertiesLine *prop_line, LttvTrapState *s)
+{
+  GQuark present_state;
+  if(s->running == 0)
+    prop_line->color = drawing_colors_trap[COL_TRAP_IDLE];
+  else
+    prop_line->color = drawing_colors_trap[COL_TRAP_BUSY];
+}
+
+static void bdev_set_line_color(PropertiesLine *prop_line, LttvBdevState *s)
+{
+  GQuark present_state;
+  if(s == 0 || s->mode_stack->len == 0)
+    present_state = LTTV_BDEV_UNKNOWN;
+  else
+    present_state = ((GQuark*)s->mode_stack->data)[s->mode_stack->len-1];
+
+  if(present_state == LTTV_BDEV_IDLE) {
+    prop_line->color = drawing_colors_bdev[COL_BDEV_IDLE];
+  }
+  else if(present_state == LTTV_BDEV_BUSY_READING) {
+    prop_line->color = drawing_colors_bdev[COL_BDEV_BUSY_READING];
+  }
+  else if(present_state == LTTV_BDEV_BUSY_WRITING) {
+    prop_line->color = drawing_colors_bdev[COL_BDEV_BUSY_WRITING];
+  }
+  else {
+    prop_line->color = drawing_colors_bdev[COL_BDEV_UNKNOWN];
+  }
 }
 
 /* before_schedchange_hook
@@ -350,9 +372,9 @@ static void set_line_color_cpu(PropertiesLine *prop_line, GQuark present_state)
 
 int before_schedchange_hook(void *hook_data, void *call_data)
 {
-  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-  ControlFlowData *control_flow_data = events_request->viewer_data;
+  LttvTraceHook *th = (LttvTraceHook*)hook_data;
+  EventsRequest *events_request = (EventsRequest*)th->hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
 
   LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
 
@@ -364,9 +386,7 @@ int before_schedchange_hook(void *hook_data, void *call_data)
   gint target_pid_saved = tfc->target_pid;
 
   LttTime evtime = ltt_event_time(e);
-  LttvFilter *filter = control_flow_data->filter;
-
-  GQuark cpuq;
+  LttvFilter *filter = resourceview_data->filter;
 
   /* we are in a schedchange, before the state update. We must draw the
    * items corresponding to the state before it changes : now is the right
@@ -375,382 +395,135 @@ int before_schedchange_hook(void *hook_data, void *call_data)
 
   guint pid_out;
   guint pid_in;
-  pid_out = ltt_event_get_long_unsigned(e, thf->f1);
-  pid_in = ltt_event_get_long_unsigned(e, thf->f2);
+  pid_out = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
+  pid_in = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 1));
+// TODO: can't we reenable this? pmf
 //  if(pid_in != 0 && pid_out != 0) {
 //    /* not a transition to/from idle */
 //    return 0;
 //  }
 
-  exit(0);
-
   tfc->target_pid = pid_out;
-//  if(!filter || !filter->head ||
-//    lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL)) { 
-    /* For the pid_out */
-    /* First, check if the current process is in the state computation
-     * process list. If it is there, that means we must add it right now and
-     * draw items from the beginning of the read for it. If it is not
-     * present, it's a new process and it was not present : it will
-     * be added after the state update.  */
-    guint cpu = tfs->cpu;
-    {
-      gchar *cpustr;
-      cpustr = g_strdup_printf("CPU%u", cpu);
-      cpuq = g_quark_from_string(cpustr);
-      g_free(cpustr);
-    }
 
-    guint trace_num = ts->parent.index;
-//    LttvProcessState *process = ts->running_process[cpu];
-    /* unknown state, bad current pid */
-//    if(process->pid != pid_out)
-//      process = lttv_state_find_process(ts,
-//          tfs->cpu, pid_out);
-    
-//    if(process != NULL) {
-      /* Well, the process_out existed : we must get it in the process hash
-       * or add it, and draw its items.
-       */
-       /* Add process to process list (if not present) */
-      guint pl_height = 0;
-      HashedResourceData *hashed_process_data = NULL;
-      ProcessList *process_list = control_flow_data->process_list;
-//      LttTime birth = process->creation_time;
-      
-      hashed_process_data = processlist_get_process_data(process_list, cpuq, trace_num);
-//      hashed_process_data = processlist_get_process_data(process_list,
-//              pid_out,
-//              process->cpu,
-//              &birth,
-//              trace_num);
-      if(hashed_process_data == NULL)
-      {
-//        g_assert(pid_out == 0 || pid_out != process->ppid);
-        /* Process not present */
-        ResourceInfo *process_info;
-        Drawing_t *drawing = control_flow_data->drawing;
-        resourcelist_add(process_list,
-            drawing,
-            trace_num,
-            cpuq, //process->name,
-            0, //cpu
-            cpu,
-            &pl_height,
-            &process_info,
-            &hashed_process_data);
-        gtk_widget_set_size_request(drawing->drawing_area,
-                                    -1,
-                                    pl_height);
-        gtk_widget_queue_draw(drawing->drawing_area);
+  guint cpu = tfs->cpu;
 
-      }
+  guint trace_num = ts->parent.index;
+   /* Add process to process list (if not present) */
+  guint pl_height = 0;
+  HashedResourceData *hashed_process_data = NULL;
+  ProcessList *process_list = resourceview_data->process_list;
   
-      /* Now, the process is in the state hash and our own process hash.
-       * We definitely can draw the items related to the ending state.
-       */
-      
-      if(ltt_time_compare(hashed_process_data->next_good_time,
-                          evtime) > 0)
-      {
-        if(hashed_process_data->x.middle_marked == FALSE) {
-    
-          TimeWindow time_window = 
-            lttvwindow_get_time_window(control_flow_data->tab);
+  hashed_process_data = resourcelist_obtain_cpu(resourceview_data, trace_num, cpu);
+  
+  /* Now, the process is in the state hash and our own process hash.
+   * We definitely can draw the items related to the ending state.
+   */
+  
+  if(ltt_time_compare(hashed_process_data->next_good_time,
+                      evtime) > 0)
+  {
+    if(hashed_process_data->x.middle_marked == FALSE) {
+  
+      TimeWindow time_window = 
+        lttvwindow_get_time_window(resourceview_data->tab);
 #ifdef EXTRA_CHECK
-          if(ltt_time_compare(evtime, time_window.start_time) == -1
-                || ltt_time_compare(evtime, time_window.end_time) == 1)
-                    return;
+      if(ltt_time_compare(evtime, time_window.start_time) == -1
+            || ltt_time_compare(evtime, time_window.end_time) == 1)
+        return;
 #endif //EXTRA_CHECK
-          Drawing_t *drawing = control_flow_data->drawing;
-          guint width = drawing->width;
-          guint x;
-          convert_time_to_pixels(
-                    time_window,
-                    evtime,
-                    width,
-                    &x);
-
-          /* Draw collision indicator */
-          gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-          gdk_draw_point(hashed_process_data->pixmap,
-                         drawing->gc,
-                         x,
-                         COLLISION_POSITION(hashed_process_data->height));
-          hashed_process_data->x.middle_marked = TRUE;
-        }
-      } else {
-        TimeWindow time_window = 
-          lttvwindow_get_time_window(control_flow_data->tab);
+      Drawing_t *drawing = resourceview_data->drawing;
+      guint width = drawing->width;
+      guint x;
+      convert_time_to_pixels(
+                time_window,
+                evtime,
+                width,
+                &x);
+
+      /* Draw collision indicator */
+      gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+      gdk_draw_point(hashed_process_data->pixmap,
+                     drawing->gc,
+                     x,
+                     COLLISION_POSITION(hashed_process_data->height));
+      hashed_process_data->x.middle_marked = TRUE;
+    }
+  } else {
+    TimeWindow time_window = 
+      lttvwindow_get_time_window(resourceview_data->tab);
 #ifdef EXTRA_CHECK
-        if(ltt_time_compare(evtime, time_window.start_time) == -1
+    if(ltt_time_compare(evtime, time_window.start_time) == -1
               || ltt_time_compare(evtime, time_window.end_time) == 1)
-                  return;
+      return;
 #endif //EXTRA_CHECK
-        Drawing_t *drawing = control_flow_data->drawing;
-        guint width = drawing->width;
-        guint x;
-        convert_time_to_pixels(
-                  time_window,
-                  evtime,
-                  width,
-                  &x);
-
-
-        /* Jump over draw if we are at the same x position */
-        if(x == hashed_process_data->x.middle &&
-             hashed_process_data->x.middle_used)
-        {
-          if(hashed_process_data->x.middle_marked == FALSE) {
-            /* Draw collision indicator */
-            gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-            gdk_draw_point(hashed_process_data->pixmap,
-                           drawing->gc,
-                           x,
-                           COLLISION_POSITION(hashed_process_data->height));
-            hashed_process_data->x.middle_marked = TRUE;
-          }
-          /* jump */
-        } else {
-          DrawContext draw_context;
-
-          /* Now create the drawing context that will be used to draw
-           * items related to the last state. */
-          draw_context.drawable = hashed_process_data->pixmap;
-          draw_context.gc = drawing->gc;
-          draw_context.pango_layout = drawing->pango_layout;
-          draw_context.drawinfo.start.x = hashed_process_data->x.middle;
-          draw_context.drawinfo.end.x = x;
-
-          draw_context.drawinfo.y.over = 1;
-          draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
-          draw_context.drawinfo.y.under = hashed_process_data->height;
-
-          draw_context.drawinfo.start.offset.over = 0;
-          draw_context.drawinfo.start.offset.middle = 0;
-          draw_context.drawinfo.start.offset.under = 0;
-          draw_context.drawinfo.end.offset.over = 0;
-          draw_context.drawinfo.end.offset.middle = 0;
-          draw_context.drawinfo.end.offset.under = 0;
-
-          {
-            /* Draw the line */
-            //PropertiesLine prop_line = prepare_s_e_line(process);
-            PropertiesLine prop_line;
-            prop_line.line_width = STATE_LINE_WIDTH;
-            prop_line.style = GDK_LINE_SOLID;
-            prop_line.y = MIDDLE;
-            cpu_set_line_color(&prop_line, tfs->cpu_state->present_state);
-            draw_line((void*)&prop_line, (void*)&draw_context);
-
-          }
-          /* become the last x position */
-          hashed_process_data->x.middle = x;
-          hashed_process_data->x.middle_used = TRUE;
-          hashed_process_data->x.middle_marked = FALSE;
+    Drawing_t *drawing = resourceview_data->drawing;
+    guint width = drawing->width;
+    guint x;
+    convert_time_to_pixels(
+              time_window,
+              evtime,
+              width,
+              &x);
 
-          /* Calculate the next good time */
-          convert_pixels_to_time(width, x+1, time_window,
-                                 &hashed_process_data->next_good_time);
-        }
+    /* Jump over draw if we are at the same x position */
+    if(x == hashed_process_data->x.middle &&
+         hashed_process_data->x.middle_used)
+    {
+      if(hashed_process_data->x.middle_marked == FALSE) {
+        /* Draw collision indicator */
+        gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+        gdk_draw_point(hashed_process_data->pixmap,
+                       drawing->gc,
+                       x,
+                       COLLISION_POSITION(hashed_process_data->height));
+        hashed_process_data->x.middle_marked = TRUE;
       }
-//    }
-//  }
-
-//  tfc->target_pid = pid_in;
-//  if(!filter || !filter->head ||
-//    lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL)) { 
-//    /* For the pid_in */
-//    /* First, check if the current process is in the state computation
-//     * process list. If it is there, that means we must add it right now and
-//     * draw items from the beginning of the read for it. If it is not
-//     * present, it's a new process and it was not present : it will
-//     * be added after the state update.  */
-//    LttvProcessState *process;
-//    process = lttv_state_find_process(ts,
-//        tfs->cpu, pid_in);
-//    guint trace_num = ts->parent.index;
-//    
-//    if(process != NULL) {
-//      /* Well, the process existed : we must get it in the process hash
-//       * or add it, and draw its items.
-//       */
-//       /* Add process to process list (if not present) */
-//      guint pl_height = 0;
-//      HashedResourceData *hashed_process_data = NULL;
-//      ProcessList *process_list = control_flow_data->process_list;
-//      LttTime birth = process->creation_time;
-//      
-//      hashed_process_data = processlist_get_process_data(process_list, cpuq);
-////      hashed_process_data = processlist_get_process_data(process_list,
-////              pid_in,
-////              tfs->cpu,
-////              &birth,
-////              trace_num);
-//      if(hashed_process_data == NULL)
-//      {
-//        g_assert(pid_in == 0 || pid_in != process->ppid);
-//        /* Process not present */
-//        ResourceInfo *process_info;
-//        Drawing_t *drawing = control_flow_data->drawing;
-//        resourcelist_add(process_list,
-//            drawing,
-////            pid_in,
-////            process->tgid,
-////            tfs->cpu,
-////            process->ppid,
-////            &birth,
-////            trace_num,
-//            process->name,
-////            process->brand,
-//            &pl_height,
-//            &process_info,
-//            &hashed_process_data);
-//        gtk_widget_set_size_request(drawing->drawing_area,
-//                                    -1,
-//                                    pl_height);
-//        gtk_widget_queue_draw(drawing->drawing_area);
-//
-//      }
-//      //We could set the current process and hash here, but will be done
-//      //by after schedchange hook
-//    
-//      /* Now, the process is in the state hash and our own process hash.
-//       * We definitely can draw the items related to the ending state.
-//       */
-//      
-//      if(ltt_time_compare(hashed_process_data->next_good_time,
-//                          evtime) > 0)
-//      {
-//        if(hashed_process_data->x.middle_marked == FALSE) {
-//
-//          TimeWindow time_window = 
-//            lttvwindow_get_time_window(control_flow_data->tab);
-//#ifdef EXTRA_CHECK
-//          if(ltt_time_compare(evtime, time_window.start_time) == -1
-//                || ltt_time_compare(evtime, time_window.end_time) == 1)
-//                    return;
-//#endif //EXTRA_CHECK
-//          Drawing_t *drawing = control_flow_data->drawing;
-//          guint width = drawing->width;
-//          guint x;
-//          convert_time_to_pixels(
-//                    time_window,
-//                    evtime,
-//                    width,
-//                    &x);
-//
-//          /* Draw collision indicator */
-//          gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-//          gdk_draw_point(hashed_process_data->pixmap,
-//                         drawing->gc,
-//                         x,
-//                         COLLISION_POSITION(hashed_process_data->height));
-//          hashed_process_data->x.middle_marked = TRUE;
-//        }
-//      } else {
-//        TimeWindow time_window = 
-//          lttvwindow_get_time_window(control_flow_data->tab);
-//#ifdef EXTRA_CHECK
-//        if(ltt_time_compare(evtime, time_window.start_time) == -1
-//              || ltt_time_compare(evtime, time_window.end_time) == 1)
-//                  return;
-//#endif //EXTRA_CHECK
-//        Drawing_t *drawing = control_flow_data->drawing;
-//        guint width = drawing->width;
-//        guint x;
-//
-//        convert_time_to_pixels(
-//                  time_window,
-//                  evtime,
-//                  width,
-//                  &x);
-//
-//
-//        /* Jump over draw if we are at the same x position */
-//        if(x == hashed_process_data->x.middle &&
-//            hashed_process_data->x.middle_used)
-//        {
-//          if(hashed_process_data->x.middle_marked == FALSE) {
-//            /* Draw collision indicator */
-//            gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-//            gdk_draw_point(hashed_process_data->pixmap,
-//                           drawing->gc,
-//                           x,
-//                           COLLISION_POSITION(hashed_process_data->height));
-//            hashed_process_data->x.middle_marked = TRUE;
-//          }
-//          /* jump */
-//        } else {
-//          DrawContext draw_context;
-//
-//          /* Now create the drawing context that will be used to draw
-//           * items related to the last state. */
-//          draw_context.drawable = hashed_process_data->pixmap;
-//          draw_context.gc = drawing->gc;
-//          draw_context.pango_layout = drawing->pango_layout;
-//          draw_context.drawinfo.start.x = hashed_process_data->x.middle;
-//          draw_context.drawinfo.end.x = x;
-//
-//          draw_context.drawinfo.y.over = 1;
-//          draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
-//          draw_context.drawinfo.y.under = hashed_process_data->height;
-//
-//          draw_context.drawinfo.start.offset.over = 0;
-//          draw_context.drawinfo.start.offset.middle = 0;
-//          draw_context.drawinfo.start.offset.under = 0;
-//          draw_context.drawinfo.end.offset.over = 0;
-//          draw_context.drawinfo.end.offset.middle = 0;
-//          draw_context.drawinfo.end.offset.under = 0;
-//
-//          {
-//            /* Draw the line */
-//            PropertiesLine prop_line = prepare_s_e_line(process);
-//            draw_line((void*)&prop_line, (void*)&draw_context);
-//          }
-//
-//          
-//          /* become the last x position */
-//          hashed_process_data->x.middle = x;
-//          hashed_process_data->x.middle_used = TRUE;
-//          hashed_process_data->x.middle_marked = FALSE;
-//
-//          /* Calculate the next good time */
-//          convert_pixels_to_time(width, x+1, time_window,
-//                                 &hashed_process_data->next_good_time);
-//        }
-//      }
-//    } else
-//      g_warning("Cannot find pin_in in schedchange %u", pid_in);
-//  }
-//  tfc->target_pid = target_pid_saved;
-  return 0;
+      /* jump */
+    } else {
+      DrawContext draw_context;
 
+      /* Now create the drawing context that will be used to draw
+       * items related to the last state. */
+      draw_context.drawable = hashed_process_data->pixmap;
+      draw_context.gc = drawing->gc;
+      draw_context.pango_layout = drawing->pango_layout;
+      draw_context.drawinfo.start.x = hashed_process_data->x.middle;
+      draw_context.drawinfo.end.x = x;
 
+      draw_context.drawinfo.y.over = 1;
+      draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
+      draw_context.drawinfo.y.under = hashed_process_data->height;
 
+      draw_context.drawinfo.start.offset.over = 0;
+      draw_context.drawinfo.start.offset.middle = 0;
+      draw_context.drawinfo.start.offset.under = 0;
+      draw_context.drawinfo.end.offset.over = 0;
+      draw_context.drawinfo.end.offset.middle = 0;
+      draw_context.drawinfo.end.offset.under = 0;
 
-  /* Text dump */
-#ifdef DONTSHOW
-  GString *string = g_string_new("");;
-  gboolean field_names = TRUE, state = TRUE;
+      {
+        /* Draw the line */
+        //PropertiesLine prop_line = prepare_s_e_line(process);
+        PropertiesLine prop_line;
+        prop_line.line_width = STATE_LINE_WIDTH;
+        prop_line.style = GDK_LINE_SOLID;
+        prop_line.y = MIDDLE;
+        cpu_set_line_color(&prop_line, tfs->cpu_state);
+        draw_line((void*)&prop_line, (void*)&draw_context);
 
-  lttv_event_to_string(e, tfc->tf, string, TRUE, field_names, tfs);
-  g_string_append_printf(string,"\n");  
+      }
+      /* become the last x position */
+      hashed_process_data->x.middle = x;
+      hashed_process_data->x.middle_used = TRUE;
+      hashed_process_data->x.middle_marked = FALSE;
 
-  if(state) {
-    g_string_append_printf(string, " %s",
-        g_quark_to_string(tfs->process->state->s));
+      /* Calculate the next good time */
+      convert_pixels_to_time(width, x+1, time_window,
+                             &hashed_process_data->next_good_time);
+    }
   }
 
-  g_info("%s",string->str);
-
-  g_string_free(string, TRUE);
-  
-  /* End of text dump */
-#endif //DONTSHOW
-
+  return 0;
 }
 
 /* after_schedchange_hook
@@ -765,20 +538,17 @@ int before_schedchange_hook(void *hook_data, void *call_data)
  */
 int after_schedchange_hook(void *hook_data, void *call_data)
 {
-  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-  ControlFlowData *control_flow_data = events_request->viewer_data;
-
+  LttvTraceHook *th = (LttvTraceHook*)hook_data;
+  EventsRequest *events_request = (EventsRequest*)th->hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
   LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
-
   LttvTracefileState *tfs = (LttvTracefileState *)call_data;
-
   LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
-
   LttEvent *e;
+
   e = ltt_tracefile_get_event(tfc->tf);
 
-  LttvFilter *filter = control_flow_data->filter;
+  LttvFilter *filter = resourceview_data->filter;
   if(filter != NULL && filter->head != NULL)
     if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
           tfc->t_context->t,tfc,NULL,NULL))
@@ -786,21 +556,19 @@ int after_schedchange_hook(void *hook_data, void *call_data)
 
   LttTime evtime = ltt_event_time(e);
 
-  GQuark cpuq;
-
   /* Add process to process list (if not present) */
   LttvProcessState *process_in;
   LttTime birth;
   guint pl_height = 0;
   HashedResourceData *hashed_process_data_in = NULL;
 
-  ProcessList *process_list = control_flow_data->process_list;
+  ProcessList *process_list = resourceview_data->process_list;
   
   guint pid_in;
   {
     guint pid_out;
-    pid_out = ltt_event_get_long_unsigned(e, thf->f1);
-    pid_in = ltt_event_get_long_unsigned(e, thf->f2);
+    pid_out = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
+    pid_in = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 1));
   }
 
 
@@ -808,12 +576,6 @@ int after_schedchange_hook(void *hook_data, void *call_data)
   //process_in = lttv_state_find_process(ts, ANY_CPU, pid_in);
   //process_in = tfs->process;
   guint cpu = tfs->cpu;
-  {
-    gchar *cpustr;
-    cpustr = g_strdup_printf("CPU%u", cpu);
-    cpuq = g_quark_from_string(cpustr);
-    g_free(cpustr);
-  }
   guint trace_num = ts->parent.index;
   process_in = ts->running_process[cpu];
   /* It should exist, because we are after the state update. */
@@ -822,32 +584,9 @@ int after_schedchange_hook(void *hook_data, void *call_data)
 #endif //EXTRA_CHECK
   birth = process_in->creation_time;
 
-  hashed_process_data_in = processlist_get_process_data(process_list, cpuq, trace_num);
-//  hashed_process_data_in = processlist_get_process_data(process_list,
-//          pid_in,
-//          process_in->cpu,
-//          &birth,
-//          trace_num);
-  if(hashed_process_data_in == NULL)
-  {
-    g_assert(pid_in == 0 || pid_in != process_in->ppid);
-    ResourceInfo *process_info;
-    Drawing_t *drawing = control_flow_data->drawing;
-    /* Process not present */
-    resourcelist_add(process_list,
-        drawing,
-        trace_num,
-        cpuq,
-        0,
-        cpu,
-        &pl_height,
-        &process_info,
-        &hashed_process_data_in);
-        gtk_widget_set_size_request(drawing->drawing_area,
-                                    -1,
-                                    pl_height);
-        gtk_widget_queue_draw(drawing->drawing_area);
-  }
+  //hashed_process_data_in = processlist_get_process_data(process_list, cpuq, trace_num);
+  hashed_process_data_in = resourcelist_obtain_cpu(resourceview_data, trace_num, cpu);
+
   /* Set the current process */
   process_list->current_hash_data[trace_num][process_in->cpu] =
                                              hashed_process_data_in;
@@ -856,14 +595,14 @@ int after_schedchange_hook(void *hook_data, void *call_data)
                           evtime) <= 0)
   {
     TimeWindow time_window = 
-    lttvwindow_get_time_window(control_flow_data->tab);
+    lttvwindow_get_time_window(resourceview_data->tab);
 
 #ifdef EXTRA_CHECK
     if(ltt_time_compare(evtime, time_window.start_time) == -1
         || ltt_time_compare(evtime, time_window.end_time) == 1)
             return;
 #endif //EXTRA_CHECK
-    Drawing_t *drawing = control_flow_data->drawing;
+    Drawing_t *drawing = resourceview_data->drawing;
     guint width = drawing->width;
     guint new_x;
     
@@ -901,9 +640,9 @@ int after_schedchange_hook(void *hook_data, void *call_data)
 
 int before_execmode_hook(void *hook_data, void *call_data)
 {
-  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-  ControlFlowData *control_flow_data = events_request->viewer_data;
+  LttvTraceHook *th = (LttvTraceHook*)hook_data;
+  EventsRequest *events_request = (EventsRequest*)th->hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
 
   LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
 
@@ -915,65 +654,36 @@ int before_execmode_hook(void *hook_data, void *call_data)
 
   LttTime evtime = ltt_event_time(e);
 
-  GQuark cpuq;
+  before_execmode_hook_irq(hook_data, call_data);
+  before_execmode_hook_soft_irq(hook_data, call_data);
+  before_execmode_hook_trap(hook_data, call_data);
 
   /* we are in a execmode, before the state update. We must draw the
    * items corresponding to the state before it changes : now is the right
    * time to do it.
    */
   /* For the pid */
-  //LttvProcessState *process = tfs->process;
   guint cpu = tfs->cpu;
-  {
-    gchar *cpustr;
-    cpustr = g_strdup_printf("CPU%u", cpu);
-    cpuq = g_quark_from_string(cpustr);
-    g_free(cpustr);
-  }
+
   guint trace_num = ts->parent.index;
   LttvProcessState *process = ts->running_process[cpu];
   g_assert(process != NULL);
 
-//  guint pid = process->pid;
-
   /* Well, the process_out existed : we must get it in the process hash
    * or add it, and draw its items.
    */
    /* Add process to process list (if not present) */
   guint pl_height = 0;
   HashedResourceData *hashed_process_data = NULL;
-  ProcessList *process_list = control_flow_data->process_list;
+  ProcessList *process_list = resourceview_data->process_list;
+
   LttTime birth = process->creation_time;
  
   if(likely(process_list->current_hash_data[trace_num][cpu] != NULL)) {
     hashed_process_data = process_list->current_hash_data[trace_num][cpu];
   } else {
-    hashed_process_data = processlist_get_process_data(process_list, cpuq, trace_num);
-//    hashed_process_data = processlist_get_process_data(process_list,
-//            pid,
-//            process->cpu,
-//            &birth,
-//            trace_num);
-    if(unlikely(hashed_process_data == NULL))
-    {
-      //g_assert(pid == 0 || pid != process->ppid);
-      ResourceInfo *process_info;
-      /* Process not present */
-      Drawing_t *drawing = control_flow_data->drawing;
-      ressourcelist_add(process_list,
-            drawing,
-            trace_num,
-            cpuq, //process->name,
-            0, //cpu
-            cpu,
-            &pl_height,
-            &process_info,
-            &hashed_process_data);
-        gtk_widget_set_size_request(drawing->drawing_area,
-                                    -1,
-                                    pl_height);
-        gtk_widget_queue_draw(drawing->drawing_area);
-    }
+      hashed_process_data = resourcelist_obtain_cpu(resourceview_data, trace_num, cpu);
+
     /* Set the current process */
     process_list->current_hash_data[trace_num][process->cpu] =
                                                hashed_process_data;
@@ -988,14 +698,14 @@ int before_execmode_hook(void *hook_data, void *call_data)
   {
     if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
       TimeWindow time_window = 
-        lttvwindow_get_time_window(control_flow_data->tab);
+        lttvwindow_get_time_window(resourceview_data->tab);
 
 #ifdef EXTRA_CHECK
       if(ltt_time_compare(evtime, time_window.start_time) == -1
             || ltt_time_compare(evtime, time_window.end_time) == 1)
                 return;
 #endif //EXTRA_CHECK
-      Drawing_t *drawing = control_flow_data->drawing;
+      Drawing_t *drawing = resourceview_data->drawing;
       guint width = drawing->width;
       guint x;
       convert_time_to_pixels(
@@ -1012,16 +722,17 @@ int before_execmode_hook(void *hook_data, void *call_data)
                      COLLISION_POSITION(hashed_process_data->height));
       hashed_process_data->x.middle_marked = TRUE;
     }
-  } else {
+  }
+  else {
     TimeWindow time_window = 
-      lttvwindow_get_time_window(control_flow_data->tab);
+      lttvwindow_get_time_window(resourceview_data->tab);
 
 #ifdef EXTRA_CHECK
     if(ltt_time_compare(evtime, time_window.start_time) == -1
           || ltt_time_compare(evtime, time_window.end_time) == 1)
               return;
 #endif //EXTRA_CHECK
-    Drawing_t *drawing = control_flow_data->drawing;
+    Drawing_t *drawing = resourceview_data->drawing;
     guint width = drawing->width;
     guint x;
 
@@ -1046,7 +757,8 @@ int before_execmode_hook(void *hook_data, void *call_data)
         hashed_process_data->x.middle_marked = TRUE;
       }
       /* jump */
-    } else {
+    }
+    else {
 
       DrawContext draw_context;
       /* Now create the drawing context that will be used to draw
@@ -1071,8 +783,10 @@ int before_execmode_hook(void *hook_data, void *call_data)
       {
         /* Draw the line */
         PropertiesLine prop_line;
-        cpu_set_line_color(&prop_line, tfs->cpu_state->present_state);
-       printf("current state: %s\n", g_quark_to_string(tfs->cpu_state->present_state));
+        prop_line.line_width = STATE_LINE_WIDTH;
+        prop_line.style = GDK_LINE_SOLID;
+        prop_line.y = MIDDLE;
+        cpu_set_line_color(&prop_line, tfs->cpu_state);
         draw_line((void*)&prop_line, (void*)&draw_context);
       }
       /* become the last x position */
@@ -1089,944 +803,690 @@ int before_execmode_hook(void *hook_data, void *call_data)
   return 0;
 }
 
-/* before_process_exit_hook
- * 
- * Draw lines for process event.
- *
- * @param hook_data ControlFlowData structure of the viewer. 
- * @param call_data Event context.
- *
- * This function adds items to be drawn in a queue for each process.
- * 
- */
+int before_execmode_hook_irq(void *hook_data, void *call_data)
+{
+  LttvTraceHook *th = (LttvTraceHook*)hook_data;
+  EventsRequest *events_request = (EventsRequest*)th->hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
 
-//int before_process_exit_hook(void *hook_data, void *call_data)
-//{
-//  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-//  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-//
-//  ControlFlowData *control_flow_data = events_request->viewer_data;
-//
-//  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
-//
-//  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
-//
-//  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
-//
-//  LttEvent *e;
-//  e = ltt_tracefile_get_event(tfc->tf);
-//
-//  LttvFilter *filter = control_flow_data->filter;
-//  if(filter != NULL && filter->head != NULL)
-//    if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL))
-//      return FALSE;
-//
-//  LttTime evtime = ltt_event_time(e);
-//
-//  /* Add process to process list (if not present) */
-//  //LttvProcessState *process = tfs->process;
-//  guint cpu = tfs->cpu;
-//  guint trace_num = ts->parent.index;
-//  LttvProcessState *process = ts->running_process[cpu];
-//  guint pid = process->pid;
-//  LttTime birth;
-//  guint pl_height = 0;
-//  HashedResourceData *hashed_process_data = NULL;
-//
-//  ProcessList *process_list = control_flow_data->process_list;
-//  
-//  g_assert(process != NULL);
-//
-//  birth = process->creation_time;
-//
-//  if(likely(process_list->current_hash_data[trace_num][cpu] != NULL)) {
-//    hashed_process_data = process_list->current_hash_data[trace_num][cpu];
-//  } else {
-//    hashed_process_data = processlist_get_process_data(process_list, "CPU0");
-////    hashed_process_data = processlist_get_process_data(process_list,
-////          pid,
-////          process->cpu,
-////          &birth,
-////          trace_num);
-//    if(unlikely(hashed_process_data == NULL))
-//    {
-//      g_assert(pid == 0 || pid != process->ppid);
-//      /* Process not present */
-//      Drawing_t *drawing = control_flow_data->drawing;
-//      ResourceInfo *process_info;
-//      processlist_add(process_list,
-//          drawing,
-//          pid,
-//          process->tgid,
-//          process->cpu,
-//          process->ppid,
-//          &birth,
-//          trace_num,
-//          process->name,
-//          process->brand,
-//          &pl_height,
-//          &process_info,
-//          &hashed_process_data);
-//      gtk_widget_set_size_request(drawing->drawing_area,
-//                                  -1,
-//                                  pl_height);
-//      gtk_widget_queue_draw(drawing->drawing_area);
-//    }
-//  }
-//
-//  /* Now, the process is in the state hash and our own process hash.
-//   * We definitely can draw the items related to the ending state.
-//   */
-//  
-//  if(likely(ltt_time_compare(hashed_process_data->next_good_time,
-//                      evtime) > 0))
-//  {
-//    if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
-//      TimeWindow time_window = 
-//        lttvwindow_get_time_window(control_flow_data->tab);
-//
-//#ifdef EXTRA_CHECK
-//      if(ltt_time_compare(evtime, time_window.start_time) == -1
-//            || ltt_time_compare(evtime, time_window.end_time) == 1)
-//                return;
-//#endif //EXTRA_CHECK
-//      Drawing_t *drawing = control_flow_data->drawing;
-//      guint width = drawing->width;
-//      guint x;
-//      convert_time_to_pixels(
-//                time_window,
-//                evtime,
-//                width,
-//                &x);
-//
-//      /* Draw collision indicator */
-//      gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-//      gdk_draw_point(hashed_process_data->pixmap,
-//                     drawing->gc,
-//                     x,
-//                     COLLISION_POSITION(hashed_process_data->height));
-//      hashed_process_data->x.middle_marked = TRUE;
-//    }
-//  } else {
-//    TimeWindow time_window = 
-//      lttvwindow_get_time_window(control_flow_data->tab);
-//
-//#ifdef EXTRA_CHECK
-//    if(ltt_time_compare(evtime, time_window.start_time) == -1
-//          || ltt_time_compare(evtime, time_window.end_time) == 1)
-//              return;
-//#endif //EXTRA_CHECK
-//    Drawing_t *drawing = control_flow_data->drawing;
-//    guint width = drawing->width;
-//    guint x;
-//
-//    convert_time_to_pixels(
-//        time_window,
-//        evtime,
-//        width,
-//        &x);
-//
-//
-//    /* Jump over draw if we are at the same x position */
-//    if(unlikely(x == hashed_process_data->x.middle &&
-//           hashed_process_data->x.middle_used))
-//    { 
-//      if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
-//        /* Draw collision indicator */
-//        gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-//        gdk_draw_point(hashed_process_data->pixmap,
-//                       drawing->gc,
-//                       x,
-//                       COLLISION_POSITION(hashed_process_data->height));
-//        hashed_process_data->x.middle_marked = TRUE;
-//      }
-//      /* jump */
-//    } else {
-//      DrawContext draw_context;
-//
-//      /* Now create the drawing context that will be used to draw
-//       * items related to the last state. */
-//      draw_context.drawable = hashed_process_data->pixmap;
-//      draw_context.gc = drawing->gc;
-//      draw_context.pango_layout = drawing->pango_layout;
-//      draw_context.drawinfo.start.x = hashed_process_data->x.middle;
-//      draw_context.drawinfo.end.x = x;
-//
-//      draw_context.drawinfo.y.over = 1;
-//      draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
-//      draw_context.drawinfo.y.under = hashed_process_data->height;
-//
-//      draw_context.drawinfo.start.offset.over = 0;
-//      draw_context.drawinfo.start.offset.middle = 0;
-//      draw_context.drawinfo.start.offset.under = 0;
-//      draw_context.drawinfo.end.offset.over = 0;
-//      draw_context.drawinfo.end.offset.middle = 0;
-//      draw_context.drawinfo.end.offset.under = 0;
-//
-//      {
-//        /* Draw the line */
-//        PropertiesLine prop_line = prepare_s_e_line(process);
-//        draw_line((void*)&prop_line, (void*)&draw_context);
-//
-//      }
-//      /* become the last x position */
-//      hashed_process_data->x.middle = x;
-//      hashed_process_data->x.middle_used = TRUE;
-//      hashed_process_data->x.middle_marked = FALSE;
-//
-//      /* Calculate the next good time */
-//      convert_pixels_to_time(width, x+1, time_window,
-//                             &hashed_process_data->next_good_time);
-//    }
-//  }
-//  
-//  return 0;
-//
-//}
+  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
 
+  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
+  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
 
-/* before_process_release_hook
- * 
- * Draw lines for process event.
- *
- * @param hook_data ControlFlowData structure of the viewer. 
- * @param call_data Event context.
- *
- * This function adds items to be drawn in a queue for each process.
- * 
- */
+  LttEvent *e;
+  e = ltt_tracefile_get_event(tfc->tf);
 
-//int before_process_release_hook(void *hook_data, void *call_data)
-//{
-//  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-//  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-//
-//  ControlFlowData *control_flow_data = events_request->viewer_data;
-//
-//  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
-//
-//  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
-//
-//  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
-//
-//  LttEvent *e;
-//  e = ltt_tracefile_get_event(tfc->tf);
-//
-//  LttvFilter *filter = control_flow_data->filter;
-//  if(filter != NULL && filter->head != NULL)
-//    if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL))
-//      return FALSE;
-//
-//  LttTime evtime = ltt_event_time(e);
-//
-//  guint trace_num = ts->parent.index;
-//
-//  guint pid;
-//  {
-//    pid = ltt_event_get_long_unsigned(e, thf->f1);
-//  }
-//
-//  /* Add process to process list (if not present) */
-//  /* Don't care about the process if it's not in the state hash already :
-//   * that means a process that has never done anything in the trace and
-//   * unknown suddently gets destroyed : no state meaningful to show. */
-//  LttvProcessState *process = lttv_state_find_process(ts, ANY_CPU, pid);
-//
-//  if(process != NULL) {
-//    LttTime birth;
-//    guint pl_height = 0;
-//    HashedResourceData *hashed_process_data = NULL;
-//
-//    ProcessList *process_list = control_flow_data->process_list;
-//    
-//    birth = process->creation_time;
-//
-//    /* Cannot use current process : this event happens on another process,
-//     * action done by the parent. */
-//    hashed_process_data = processlist_get_process_data(process_list, "CPU0");
-////    hashed_process_data = processlist_get_process_data(process_list,
-////          pid,
-////          process->cpu,
-////          &birth,
-////          trace_num);
-//    if(unlikely(hashed_process_data == NULL))
-//    {
-//      g_assert(pid == 0 || pid != process->ppid);
-//      /* Process not present */
-//      Drawing_t *drawing = control_flow_data->drawing;
-//      ResourceInfo *process_info;
-//      processlist_add(process_list,
-//          drawing,
-//          pid,
-//          process->tgid,
-//          process->cpu,
-//          process->ppid,
-//          &birth,
-//          trace_num,
-//          process->name,
-//          process->brand,
-//          &pl_height,
-//          &process_info,
-//          &hashed_process_data);
-//      gtk_widget_set_size_request(drawing->drawing_area,
-//                                  -1,
-//                                  pl_height);
-//      gtk_widget_queue_draw(drawing->drawing_area);
-//    }
-//
-//    /* Now, the process is in the state hash and our own process hash.
-//     * We definitely can draw the items related to the ending state.
-//     */
-//    
-//    if(likely(ltt_time_compare(hashed_process_data->next_good_time,
-//                        evtime) > 0))
-//    {
-//      if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
-//        TimeWindow time_window = 
-//          lttvwindow_get_time_window(control_flow_data->tab);
-//
-//#ifdef EXTRA_CHECK
-//        if(ltt_time_compare(evtime, time_window.start_time) == -1
-//              || ltt_time_compare(evtime, time_window.end_time) == 1)
-//                  return;
-//#endif //EXTRA_CHECK
-//        Drawing_t *drawing = control_flow_data->drawing;
-//        guint width = drawing->width;
-//        guint x;
-//        convert_time_to_pixels(
-//                  time_window,
-//                  evtime,
-//                  width,
-//                  &x);
-//
-//        /* Draw collision indicator */
-//        gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-//        gdk_draw_point(hashed_process_data->pixmap,
-//                       drawing->gc,
-//                       x,
-//                       COLLISION_POSITION(hashed_process_data->height));
-//        hashed_process_data->x.middle_marked = TRUE;
-//      }
-//    } else {
-//      TimeWindow time_window = 
-//        lttvwindow_get_time_window(control_flow_data->tab);
-//
-//#ifdef EXTRA_CHECK
-//      if(ltt_time_compare(evtime, time_window.start_time) == -1
-//            || ltt_time_compare(evtime, time_window.end_time) == 1)
-//                return;
-//#endif //EXTRA_CHECK
-//      Drawing_t *drawing = control_flow_data->drawing;
-//      guint width = drawing->width;
-//      guint x;
-//
-//      convert_time_to_pixels(
-//          time_window,
-//          evtime,
-//          width,
-//          &x);
-//
-//
-//      /* Jump over draw if we are at the same x position */
-//      if(unlikely(x == hashed_process_data->x.middle &&
-//             hashed_process_data->x.middle_used))
-//      { 
-//        if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
-//          /* Draw collision indicator */
-//          gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-//          gdk_draw_point(hashed_process_data->pixmap,
-//                         drawing->gc,
-//                         x,
-//                         COLLISION_POSITION(hashed_process_data->height));
-//          hashed_process_data->x.middle_marked = TRUE;
-//        }
-//        /* jump */
-//      } else {
-//        DrawContext draw_context;
-//
-//        /* Now create the drawing context that will be used to draw
-//         * items related to the last state. */
-//        draw_context.drawable = hashed_process_data->pixmap;
-//        draw_context.gc = drawing->gc;
-//        draw_context.pango_layout = drawing->pango_layout;
-//        draw_context.drawinfo.start.x = hashed_process_data->x.middle;
-//        draw_context.drawinfo.end.x = x;
-//
-//        draw_context.drawinfo.y.over = 1;
-//        draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
-//        draw_context.drawinfo.y.under = hashed_process_data->height;
-//
-//        draw_context.drawinfo.start.offset.over = 0;
-//        draw_context.drawinfo.start.offset.middle = 0;
-//        draw_context.drawinfo.start.offset.under = 0;
-//        draw_context.drawinfo.end.offset.over = 0;
-//        draw_context.drawinfo.end.offset.middle = 0;
-//        draw_context.drawinfo.end.offset.under = 0;
-//
-//        {
-//          /* Draw the line */
-//          PropertiesLine prop_line = prepare_s_e_line(process);
-//          draw_line((void*)&prop_line, (void*)&draw_context);
-//
-//        }
-//        /* become the last x position */
-//        hashed_process_data->x.middle = x;
-//        hashed_process_data->x.middle_used = TRUE;
-//        hashed_process_data->x.middle_marked = FALSE;
-//
-//        /* Calculate the next good time */
-//        convert_pixels_to_time(width, x+1, time_window,
-//                               &hashed_process_data->next_good_time);
-//      }
-//    }
-//  }
-//
-//  return 0;
-//}
+  LttTime evtime = ltt_event_time(e);
+
+  LttTrace *trace = tfc->t_context->t;
+
+  /* we are in a execmode, before the state update. We must draw the
+   * items corresponding to the state before it changes : now is the right
+   * time to do it.
+   */
+  /* For the pid */
+
+  guint64 irq;
+  guint cpu = tfs->cpu;
+
+  guint16 ev_id_entry = marker_get_id_from_info(trace, marker_get_info_from_name(trace, lttv_merge_facility_event_name(LTT_FACILITY_KERNEL, LTT_EVENT_IRQ_ENTRY)));
+  guint16 ev_id_exit = marker_get_id_from_info(trace, marker_get_info_from_name(trace, lttv_merge_facility_event_name(LTT_FACILITY_KERNEL, LTT_EVENT_IRQ_EXIT)));
+  if(ev_id_entry == e->event_id) {
+    irq = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
+  }
+  else if(ev_id_exit == e->event_id) {
+    irq = ts->cpu_states[cpu].last_irq;
+  }
+  else {
+    return 0;
+  }
+
+  guint trace_num = ts->parent.index;
+
+  /* Well, the process_out existed : we must get it in the process hash
+   * or add it, and draw its items.
+   */
+   /* Add process to process list (if not present) */
+  guint pl_height = 0;
+  HashedResourceData *hashed_process_data = NULL;
+  ProcessList *process_list = resourceview_data->process_list;
+
+  hashed_process_data = resourcelist_obtain_irq(resourceview_data, trace_num, irq);
+  // TODO: fix this, it's ugly and slow:
+  GQuark name;
+  {
+    gchar *str;
+    str = g_strdup_printf("IRQ %llu [%s]", irq, (char*)g_quark_to_string(ts->irq_names[irq]));
+    name = g_quark_from_string(str);
+    g_free(str);
+  }
+  gtk_tree_store_set(resourceview_data->process_list->list_store, &hashed_process_data->y_iter, NAME_COLUMN, g_quark_to_string(name), -1);
+
+  /* Now, the process is in the state hash and our own process hash.
+   * We definitely can draw the items related to the ending state.
+   */
+
+  if(likely(ltt_time_compare(hashed_process_data->next_good_time,
+                      evtime) > 0))
+  {
+    if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
+      TimeWindow time_window = 
+        lttvwindow_get_time_window(resourceview_data->tab);
+
+#ifdef EXTRA_CHECK
+      if(ltt_time_compare(evtime, time_window.start_time) == -1
+            || ltt_time_compare(evtime, time_window.end_time) == 1)
+                return;
+#endif //EXTRA_CHECK
+      Drawing_t *drawing = resourceview_data->drawing;
+      guint width = drawing->width;
+      guint x;
+      convert_time_to_pixels(
+                time_window,
+                evtime,
+                width,
+                &x);
+
+      /* Draw collision indicator */
+      gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+      gdk_draw_point(hashed_process_data->pixmap,
+                     drawing->gc,
+                     x,
+                     COLLISION_POSITION(hashed_process_data->height));
+      hashed_process_data->x.middle_marked = TRUE;
+    }
+  }
+  else {
+    TimeWindow time_window = 
+      lttvwindow_get_time_window(resourceview_data->tab);
+
+#ifdef EXTRA_CHECK
+    if(ltt_time_compare(evtime, time_window.start_time) == -1
+          || ltt_time_compare(evtime, time_window.end_time) == 1)
+              return;
+#endif //EXTRA_CHECK
+    Drawing_t *drawing = resourceview_data->drawing;
+    guint width = drawing->width;
+    guint x;
+
+    convert_time_to_pixels(
+        time_window,
+        evtime,
+        width,
+        &x);
+
+
+    /* Jump over draw if we are at the same x position */
+    if(unlikely(x == hashed_process_data->x.middle &&
+             hashed_process_data->x.middle_used))
+    {
+      if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
+        /* Draw collision indicator */
+        gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+        gdk_draw_point(hashed_process_data->pixmap,
+                       drawing->gc,
+                       x,
+                       COLLISION_POSITION(hashed_process_data->height));
+        hashed_process_data->x.middle_marked = TRUE;
+      }
+      /* jump */
+    }
+    else {
+
+      DrawContext draw_context;
+      /* Now create the drawing context that will be used to draw
+       * items related to the last state. */
+      draw_context.drawable = hashed_process_data->pixmap;
+      draw_context.gc = drawing->gc;
+      draw_context.pango_layout = drawing->pango_layout;
+      draw_context.drawinfo.start.x = hashed_process_data->x.middle;
+      draw_context.drawinfo.end.x = x;
+
+      draw_context.drawinfo.y.over = 1;
+      draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
+      draw_context.drawinfo.y.under = hashed_process_data->height;
+
+      draw_context.drawinfo.start.offset.over = 0;
+      draw_context.drawinfo.start.offset.middle = 0;
+      draw_context.drawinfo.start.offset.under = 0;
+      draw_context.drawinfo.end.offset.over = 0;
+      draw_context.drawinfo.end.offset.middle = 0;
+      draw_context.drawinfo.end.offset.under = 0;
+
+      {
+        /* Draw the line */
+        PropertiesLine prop_line;
+        prop_line.line_width = STATE_LINE_WIDTH;
+        prop_line.style = GDK_LINE_SOLID;
+        prop_line.y = MIDDLE;
+        irq_set_line_color(&prop_line, &ts->irq_states[irq]);
+        draw_line((void*)&prop_line, (void*)&draw_context);
+      }
+      /* become the last x position */
+      hashed_process_data->x.middle = x;
+      hashed_process_data->x.middle_used = TRUE;
+      hashed_process_data->x.middle_marked = FALSE;
+
+      /* Calculate the next good time */
+      convert_pixels_to_time(width, x+1, time_window,
+                             &hashed_process_data->next_good_time);
+    }
+  }
+  
+  return 0;
+}
+
+int before_execmode_hook_soft_irq(void *hook_data, void *call_data)
+{
+  LttvTraceHook *th = (LttvTraceHook*)hook_data;
+  EventsRequest *events_request = (EventsRequest*)th->hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
+
+  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
+
+  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
+  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
+
+  LttEvent *e;
+  e = ltt_tracefile_get_event(tfc->tf);
+
+  LttTime evtime = ltt_event_time(e);
+
+  LttTrace *trace = tfc->t_context->t;
+
+  /* we are in a execmode, before the state update. We must draw the
+   * items corresponding to the state before it changes : now is the right
+   * time to do it.
+   */
+  /* For the pid */
+
+  guint64 softirq;
+  guint cpu = tfs->cpu;
+
+  guint16 ev_id_raise = marker_get_id_from_info(trace, marker_get_info_from_name(trace, lttv_merge_facility_event_name(LTT_FACILITY_KERNEL, LTT_EVENT_SOFT_IRQ_RAISE)));
+  guint16 ev_id_entry = marker_get_id_from_info(trace, marker_get_info_from_name(trace, lttv_merge_facility_event_name(LTT_FACILITY_KERNEL, LTT_EVENT_SOFT_IRQ_ENTRY)));
+  guint16 ev_id_exit = marker_get_id_from_info(trace, marker_get_info_from_name(trace, lttv_merge_facility_event_name(LTT_FACILITY_KERNEL, LTT_EVENT_SOFT_IRQ_EXIT)));
+  if(ev_id_entry == e->event_id || ev_id_raise == e->event_id) {
+    softirq = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
+  }
+  else if(ev_id_exit == e->event_id) {
+    softirq = ts->cpu_states[cpu].last_soft_irq;
+  }
+  else {
+    return 0;
+  }
+
+  guint trace_num = ts->parent.index;
+
+  /* Well, the process_out existed : we must get it in the process hash
+   * or add it, and draw its items.
+   */
+   /* Add process to process list (if not present) */
+  guint pl_height = 0;
+  HashedResourceData *hashed_process_data = NULL;
+  ProcessList *process_list = resourceview_data->process_list;
+
+  hashed_process_data = resourcelist_obtain_soft_irq(resourceview_data, trace_num, softirq);
+
+  /* Now, the process is in the state hash and our own process hash.
+   * We definitely can draw the items related to the ending state.
+   */
+
+  if(likely(ltt_time_compare(hashed_process_data->next_good_time,
+                      evtime) > 0))
+  {
+    if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
+      TimeWindow time_window = 
+        lttvwindow_get_time_window(resourceview_data->tab);
+
+#ifdef EXTRA_CHECK
+      if(ltt_time_compare(evtime, time_window.start_time) == -1
+            || ltt_time_compare(evtime, time_window.end_time) == 1)
+                return;
+#endif //EXTRA_CHECK
+      Drawing_t *drawing = resourceview_data->drawing;
+      guint width = drawing->width;
+      guint x;
+      convert_time_to_pixels(
+                time_window,
+                evtime,
+                width,
+                &x);
+
+      /* Draw collision indicator */
+      gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+      gdk_draw_point(hashed_process_data->pixmap,
+                     drawing->gc,
+                     x,
+                     COLLISION_POSITION(hashed_process_data->height));
+      hashed_process_data->x.middle_marked = TRUE;
+    }
+  }
+  else {
+    TimeWindow time_window = 
+      lttvwindow_get_time_window(resourceview_data->tab);
+
+#ifdef EXTRA_CHECK
+    if(ltt_time_compare(evtime, time_window.start_time) == -1
+          || ltt_time_compare(evtime, time_window.end_time) == 1)
+              return;
+#endif //EXTRA_CHECK
+    Drawing_t *drawing = resourceview_data->drawing;
+    guint width = drawing->width;
+    guint x;
+
+    convert_time_to_pixels(
+        time_window,
+        evtime,
+        width,
+        &x);
+
+
+    /* Jump over draw if we are at the same x position */
+    if(unlikely(x == hashed_process_data->x.middle &&
+             hashed_process_data->x.middle_used))
+    {
+      if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
+        /* Draw collision indicator */
+        gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+        gdk_draw_point(hashed_process_data->pixmap,
+                       drawing->gc,
+                       x,
+                       COLLISION_POSITION(hashed_process_data->height));
+        hashed_process_data->x.middle_marked = TRUE;
+      }
+      /* jump */
+    }
+    else {
+
+      DrawContext draw_context;
+      /* Now create the drawing context that will be used to draw
+       * items related to the last state. */
+      draw_context.drawable = hashed_process_data->pixmap;
+      draw_context.gc = drawing->gc;
+      draw_context.pango_layout = drawing->pango_layout;
+      draw_context.drawinfo.start.x = hashed_process_data->x.middle;
+      draw_context.drawinfo.end.x = x;
+
+      draw_context.drawinfo.y.over = 1;
+      draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
+      draw_context.drawinfo.y.under = hashed_process_data->height;
 
-/* after_process_fork_hook
- * 
- * Create the processlist entry for the child process. Put the last
- * position in x at the current time value.
- *
- * @param hook_data ControlFlowData structure of the viewer. 
- * @param call_data Event context.
- *
- * This function adds items to be drawn in a queue for each process.
- * 
- */
-//int after_process_fork_hook(void *hook_data, void *call_data)
-//{
-//  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-//  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-//  ControlFlowData *control_flow_data = events_request->viewer_data;
-//
-//  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
-//
-//  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
-//
-//  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
-//
-//  LttEvent *e;
-//  e = ltt_tracefile_get_event(tfc->tf);
-//
-//  LttvFilter *filter = control_flow_data->filter;
-//  if(filter != NULL && filter->head != NULL)
-//    if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL))
-//      return FALSE;
-//
-//  LttTime evtime = ltt_event_time(e);
-//
-//  guint child_pid;
-//  {
-//    child_pid = ltt_event_get_long_unsigned(e, thf->f2);
-//  }
-//
-//  /* Add process to process list (if not present) */
-//  LttvProcessState *process_child;
-//  LttTime birth;
-//  guint pl_height = 0;
-//  HashedResourceData *hashed_process_data_child = NULL;
-//
-//  ProcessList *process_list = control_flow_data->process_list;
-//
-//  /* Find child in the list... */
-//  process_child = lttv_state_find_process(ts, ANY_CPU, child_pid);
-//  /* It should exist, because we are after the state update. */
-//  g_assert(process_child != NULL);
-//
-//  birth = process_child->creation_time;
-//  guint trace_num = ts->parent.index;
-//
-//  /* Cannot use current process, because this action is done by the parent
-//   * on its child. */
-//  hashed_process_data_child = processlist_get_process_data(process_list, "CPU0");
-////  hashed_process_data_child = processlist_get_process_data(process_list,
-////          child_pid,
-////          process_child->cpu,
-////          &birth,
-////          trace_num);
-//  if(likely(hashed_process_data_child == NULL))
-//  {
-//    g_assert(child_pid == 0 || child_pid != process_child->ppid);
-//    /* Process not present */
-//    Drawing_t *drawing = control_flow_data->drawing;
-//    ResourceInfo *process_info;
-//    processlist_add(process_list,
-//        drawing,
-//        child_pid,
-//        process_child->tgid,
-//        process_child->cpu,
-//        process_child->ppid,
-//        &birth,
-//        trace_num,
-//        process_child->name,
-//        process_child->brand,
-//        &pl_height,
-//        &process_info,
-//        &hashed_process_data_child);
-//      gtk_widget_set_size_request(drawing->drawing_area,
-//                                  -1,
-//                                  pl_height);
-//      gtk_widget_queue_draw(drawing->drawing_area);
-//  } else {
-//          processlist_set_ppid(process_list, process_child->ppid,
-//                               hashed_process_data_child);
-//          processlist_set_tgid(process_list, process_child->tgid,
-//                               hashed_process_data_child);
-//  }
-//
-//
-//  if(likely(ltt_time_compare(hashed_process_data_child->next_good_time,
-//                        evtime) <= 0))
-//  {
-//    TimeWindow time_window = 
-//      lttvwindow_get_time_window(control_flow_data->tab);
-//
-//#ifdef EXTRA_CHECK
-//    if(ltt_time_compare(evtime, time_window.start_time) == -1
-//          || ltt_time_compare(evtime, time_window.end_time) == 1)
-//              return;
-//#endif //EXTRA_CHECK
-//    Drawing_t *drawing = control_flow_data->drawing;
-//    guint width = drawing->width;
-//    guint new_x;
-//    convert_time_to_pixels(
-//        time_window,
-//        evtime,
-//        width,
-//        &new_x);
-//
-//    if(likely(hashed_process_data_child->x.over != new_x)) {
-//      hashed_process_data_child->x.over = new_x;
-//      hashed_process_data_child->x.over_used = FALSE;
-//      hashed_process_data_child->x.over_marked = FALSE;
-//    }
-//    if(likely(hashed_process_data_child->x.middle != new_x)) {
-//      hashed_process_data_child->x.middle = new_x;
-//      hashed_process_data_child->x.middle_used = FALSE;
-//      hashed_process_data_child->x.middle_marked = FALSE;
-//    }
-//    if(likely(hashed_process_data_child->x.under != new_x)) {
-//      hashed_process_data_child->x.under = new_x;
-//      hashed_process_data_child->x.under_used = FALSE;
-//      hashed_process_data_child->x.under_marked = FALSE;
-//    }
-//  }
-//  return 0;
-//}
+      draw_context.drawinfo.start.offset.over = 0;
+      draw_context.drawinfo.start.offset.middle = 0;
+      draw_context.drawinfo.start.offset.under = 0;
+      draw_context.drawinfo.end.offset.over = 0;
+      draw_context.drawinfo.end.offset.middle = 0;
+      draw_context.drawinfo.end.offset.under = 0;
 
+      {
+        /* Draw the line */
+        PropertiesLine prop_line;
+        prop_line.line_width = STATE_LINE_WIDTH;
+        prop_line.style = GDK_LINE_SOLID;
+        prop_line.y = MIDDLE;
+        soft_irq_set_line_color(&prop_line, &ts->soft_irq_states[softirq]);
+        draw_line((void*)&prop_line, (void*)&draw_context);
+      }
+      /* become the last x position */
+      hashed_process_data->x.middle = x;
+      hashed_process_data->x.middle_used = TRUE;
+      hashed_process_data->x.middle_marked = FALSE;
 
+      /* Calculate the next good time */
+      convert_pixels_to_time(width, x+1, time_window,
+                             &hashed_process_data->next_good_time);
+    }
+  }
+  
+  return 0;
+}
 
-/* after_process_exit_hook
- * 
- * Create the processlist entry for the child process. Put the last
- * position in x at the current time value.
- *
- * @param hook_data ControlFlowData structure of the viewer. 
- * @param call_data Event context.
- *
- * This function adds items to be drawn in a queue for each process.
- * 
- */
-//int after_process_exit_hook(void *hook_data, void *call_data)
-//{
-//  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-//  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-//  ControlFlowData *control_flow_data = events_request->viewer_data;
-//
-//  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
-//
-//  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
-//
-//  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
-//
-//  LttEvent *e;
-//  e = ltt_tracefile_get_event(tfc->tf);
-//
-//  LttvFilter *filter = control_flow_data->filter;
-//  if(filter != NULL && filter->head != NULL)
-//    if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL))
-//      return FALSE;
-//
-//  LttTime evtime = ltt_event_time(e);
-//
-//  /* Add process to process list (if not present) */
-//  //LttvProcessState *process = tfs->process;
-//  guint cpu = tfs->cpu;
-//  guint trace_num = ts->parent.index;
-//  LttvProcessState *process = ts->running_process[cpu];
-//
-//  /* It should exist, because we are after the state update. */
-//  g_assert(process != NULL);
-//
-//  guint pid = process->pid;
-//  LttTime birth;
-//  guint pl_height = 0;
-//  HashedResourceData *hashed_process_data = NULL;
-//
-//  ProcessList *process_list = control_flow_data->process_list;
-//
-//  birth = process->creation_time;
-//
-//  if(likely(process_list->current_hash_data[trace_num][cpu] != NULL) ){
-//    hashed_process_data = process_list->current_hash_data[trace_num][cpu];
-//  } else {
-//    hashed_process_data = processlist_get_process_data(process_list, "CPU0");
-////    hashed_process_data = processlist_get_process_data(process_list,
-////            pid,
-////            process->cpu,
-////            &birth,
-////            trace_num);
-//    if(unlikely(hashed_process_data == NULL))
-//    {
-//      g_assert(pid == 0 || pid != process->ppid);
-//      /* Process not present */
-//      Drawing_t *drawing = control_flow_data->drawing;
-//      ResourceInfo *process_info;
-//      processlist_add(process_list,
-//          drawing,
-//          pid,
-//          process->tgid,
-//          process->cpu,
-//          process->ppid,
-//          &birth,
-//          trace_num,
-//          process->name,
-//          process->brand,
-//          &pl_height,
-//          &process_info,
-//          &hashed_process_data);
-//      gtk_widget_set_size_request(drawing->drawing_area,
-//                                  -1,
-//                                  pl_height);
-//      gtk_widget_queue_draw(drawing->drawing_area);
-//    }
-//
-//    /* Set the current process */
-//    process_list->current_hash_data[trace_num][process->cpu] =
-//                                             hashed_process_data;
-//  }
-//
-//  if(unlikely(ltt_time_compare(hashed_process_data->next_good_time,
-//                        evtime) <= 0))
-//  {
-//    TimeWindow time_window = 
-//      lttvwindow_get_time_window(control_flow_data->tab);
-//
-//#ifdef EXTRA_CHECK
-//    if(ltt_time_compare(evtime, time_window.start_time) == -1
-//          || ltt_time_compare(evtime, time_window.end_time) == 1)
-//              return;
-//#endif //EXTRA_CHECK
-//    Drawing_t *drawing = control_flow_data->drawing;
-//    guint width = drawing->width;
-//    guint new_x;
-//    convert_time_to_pixels(
-//        time_window,
-//        evtime,
-//        width,
-//        &new_x);
-//    if(unlikely(hashed_process_data->x.middle != new_x)) {
-//      hashed_process_data->x.middle = new_x;
-//      hashed_process_data->x.middle_used = FALSE;
-//      hashed_process_data->x.middle_marked = FALSE;
-//    }
-//  }
-//
-//  return 0;
-//}
+int before_execmode_hook_trap(void *hook_data, void *call_data)
+{
+  LttvTraceHook *th = (LttvTraceHook*)hook_data;
+  EventsRequest *events_request = (EventsRequest*)th->hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
 
+  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
 
-/* Get the filename of the process to print */
-//int after_fs_exec_hook(void *hook_data, void *call_data)
-//{
-//  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-//  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-//  ControlFlowData *control_flow_data = events_request->viewer_data;
-//
-//  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
-//
-//  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
-//
-//  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
-//
-//  LttEvent *e;
-//  e = ltt_tracefile_get_event(tfc->tf);
-//
-//  LttvFilter *filter = control_flow_data->filter;
-//  if(filter != NULL && filter->head != NULL)
-//    if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL))
-//      return FALSE;
-//
-//  guint cpu = tfs->cpu;
-//  guint trace_num = ts->parent.index;
-//  LttvProcessState *process = ts->running_process[cpu];
-//  g_assert(process != NULL);
-//
-//  guint pid = process->pid;
-//
-//  /* Well, the process_out existed : we must get it in the process hash
-//   * or add it, and draw its items.
-//   */
-//   /* Add process to process list (if not present) */
-//  guint pl_height = 0;
-//  HashedResourceData *hashed_process_data = NULL;
-//  ProcessList *process_list = control_flow_data->process_list;
+  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
+  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
+
+  LttEvent *e;
+  e = ltt_tracefile_get_event(tfc->tf);
+
+  LttTime evtime = ltt_event_time(e);
+
+  LttTrace *trace = tfc->t_context->t;
+
+  /* we are in a execmode, before the state update. We must draw the
+   * items corresponding to the state before it changes : now is the right
+   * time to do it.
+   */
+  /* For the pid */
+
+  guint64 trap;
+  guint cpu = tfs->cpu;
+
+  guint16 ev_id_entry = marker_get_id_from_info(trace, marker_get_info_from_name(trace, lttv_merge_facility_event_name(LTT_FACILITY_KERNEL_ARCH, LTT_EVENT_TRAP_ENTRY)));
+  guint16 ev_id_exit = marker_get_id_from_info(trace, marker_get_info_from_name(trace, lttv_merge_facility_event_name(LTT_FACILITY_KERNEL_ARCH, LTT_EVENT_TRAP_EXIT)));
+  if(ev_id_entry == e->event_id) {
+    trap = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
+  }
+  else if(ev_id_exit == e->event_id) {
+    trap = ts->cpu_states[cpu].last_trap;
+  }
+  else {
+    return 0;
+  }
+
+  guint trace_num = ts->parent.index;
+
+  /* Well, the process_out existed : we must get it in the process hash
+   * or add it, and draw its items.
+   */
+   /* Add process to process list (if not present) */
+  guint pl_height = 0;
+  HashedResourceData *hashed_process_data = NULL;
+  ProcessList *process_list = resourceview_data->process_list;
+
+  hashed_process_data = resourcelist_obtain_trap(resourceview_data, trace_num, trap);
+
+  /* Now, the process is in the state hash and our own process hash.
+   * We definitely can draw the items related to the ending state.
+   */
+
+  if(likely(ltt_time_compare(hashed_process_data->next_good_time,
+                      evtime) > 0))
+  {
+    if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
+      TimeWindow time_window = 
+        lttvwindow_get_time_window(resourceview_data->tab);
+
+#ifdef EXTRA_CHECK
+      if(ltt_time_compare(evtime, time_window.start_time) == -1
+            || ltt_time_compare(evtime, time_window.end_time) == 1)
+                return;
+#endif //EXTRA_CHECK
+      Drawing_t *drawing = resourceview_data->drawing;
+      guint width = drawing->width;
+      guint x;
+      convert_time_to_pixels(
+                time_window,
+                evtime,
+                width,
+                &x);
+
+      /* Draw collision indicator */
+      gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+      gdk_draw_point(hashed_process_data->pixmap,
+                     drawing->gc,
+                     x,
+                     COLLISION_POSITION(hashed_process_data->height));
+      hashed_process_data->x.middle_marked = TRUE;
+    }
+  }
+  else {
+    TimeWindow time_window = 
+      lttvwindow_get_time_window(resourceview_data->tab);
+
+#ifdef EXTRA_CHECK
+    if(ltt_time_compare(evtime, time_window.start_time) == -1
+          || ltt_time_compare(evtime, time_window.end_time) == 1)
+              return;
+#endif //EXTRA_CHECK
+    Drawing_t *drawing = resourceview_data->drawing;
+    guint width = drawing->width;
+    guint x;
+
+    convert_time_to_pixels(
+        time_window,
+        evtime,
+        width,
+        &x);
+
+
+    /* Jump over draw if we are at the same x position */
+    if(unlikely(x == hashed_process_data->x.middle &&
+             hashed_process_data->x.middle_used))
+    {
+      if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
+        /* Draw collision indicator */
+        gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+        gdk_draw_point(hashed_process_data->pixmap,
+                       drawing->gc,
+                       x,
+                       COLLISION_POSITION(hashed_process_data->height));
+        hashed_process_data->x.middle_marked = TRUE;
+      }
+      /* jump */
+    }
+    else {
+
+      DrawContext draw_context;
+      /* Now create the drawing context that will be used to draw
+       * items related to the last state. */
+      draw_context.drawable = hashed_process_data->pixmap;
+      draw_context.gc = drawing->gc;
+      draw_context.pango_layout = drawing->pango_layout;
+      draw_context.drawinfo.start.x = hashed_process_data->x.middle;
+      draw_context.drawinfo.end.x = x;
+
+      draw_context.drawinfo.y.over = 1;
+      draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
+      draw_context.drawinfo.y.under = hashed_process_data->height;
+
+      draw_context.drawinfo.start.offset.over = 0;
+      draw_context.drawinfo.start.offset.middle = 0;
+      draw_context.drawinfo.start.offset.under = 0;
+      draw_context.drawinfo.end.offset.over = 0;
+      draw_context.drawinfo.end.offset.middle = 0;
+      draw_context.drawinfo.end.offset.under = 0;
+
+      {
+        /* Draw the line */
+        PropertiesLine prop_line;
+        prop_line.line_width = STATE_LINE_WIDTH;
+        prop_line.style = GDK_LINE_SOLID;
+        prop_line.y = MIDDLE;
+        trap_set_line_color(&prop_line, &ts->trap_states[trap]);
+        draw_line((void*)&prop_line, (void*)&draw_context);
+      }
+      /* become the last x position */
+      hashed_process_data->x.middle = x;
+      hashed_process_data->x.middle_used = TRUE;
+      hashed_process_data->x.middle_marked = FALSE;
+
+      /* Calculate the next good time */
+      convert_pixels_to_time(width, x+1, time_window,
+                             &hashed_process_data->next_good_time);
+    }
+  }
+  
+  return 0;
+}
+
+
+int before_bdev_event_hook(void *hook_data, void *call_data)
+{
+  LttvTraceHook *th = (LttvTraceHook*)hook_data;
+  EventsRequest *events_request = (EventsRequest*)th->hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
+
+  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
+
+  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
+  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
+
+  LttEvent *e;
+  e = ltt_tracefile_get_event(tfc->tf);
+
+  LttTime evtime = ltt_event_time(e);
+
+  /* we are in a execmode, before the state update. We must draw the
+   * items corresponding to the state before it changes : now is the right
+   * time to do it.
+   */
+  /* For the pid */
+
+  guint cpu = tfs->cpu;
+  guint8 major = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 0));
+  guint8 minor = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 1));
+  guint oper = ltt_event_get_long_unsigned(e, lttv_trace_get_hook_field(th, 2));
+  gint devcode_gint = MKDEV(major,minor);
+
+  guint trace_num = ts->parent.index;
+
+  LttvBdevState *bdev = g_hash_table_lookup(ts->bdev_states, &devcode_gint); 
+  /* the result of the lookup might be NULL. that's ok, the rest of the function
+     should understand it was not found and that its state is unknown */
+
+  /* Well, the process_out existed : we must get it in the process hash
+   * or add it, and draw its items.
+   */
+   /* Add process to process list (if not present) */
+  guint pl_height = 0;
+  HashedResourceData *hashed_process_data = NULL;
+  ProcessList *process_list = resourceview_data->process_list;
 //  LttTime birth = process->creation_time;
-// 
 //  if(likely(process_list->current_hash_data[trace_num][cpu] != NULL)) {
 //    hashed_process_data = process_list->current_hash_data[trace_num][cpu];
 //  } else {
-//    hashed_process_data = processlist_get_process_data(process_list, "CPU0");
-////    hashed_process_data = processlist_get_process_data(process_list,
-////            pid,
-////            process->cpu,
-////            &birth,
-////            trace_num);
-//    if(unlikely(hashed_process_data == NULL))
-//    {
-//      g_assert(pid == 0 || pid != process->ppid);
-//      ResourceInfo *process_info;
-//      /* Process not present */
-//      Drawing_t *drawing = control_flow_data->drawing;
-//      processlist_add(process_list,
-//          drawing,
-//          pid,
-//          process->tgid,
-//          process->cpu,
-//          process->ppid,
-//          &birth,
-//          trace_num,
-//          process->name,
-//          process->brand,
-//          &pl_height,
-//          &process_info,
-//          &hashed_process_data);
-//        gtk_widget_set_size_request(drawing->drawing_area,
-//                                    -1,
-//                                    pl_height);
-//        gtk_widget_queue_draw(drawing->drawing_area);
-//    }
-//    /* Set the current process */
-//    process_list->current_hash_data[trace_num][process->cpu] =
-//                                               hashed_process_data;
-//  }
-//
-//  processlist_set_name(process_list, process->name, hashed_process_data);
-//
-//  return 0;
-//
-//}
-
-/* Get the filename of the process to print */
-//int after_user_generic_thread_brand_hook(void *hook_data, void *call_data)
-//{
-//  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-//  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-//  ControlFlowData *control_flow_data = events_request->viewer_data;
-//
-//  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
-//
-//  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
-//
-//  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
-//
-//  LttEvent *e;
-//  e = ltt_tracefile_get_event(tfc->tf);
-//
-//  LttvFilter *filter = control_flow_data->filter;
-//  if(filter != NULL && filter->head != NULL)
-//    if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL))
-//      return FALSE;
-//
-//  guint cpu = tfs->cpu;
-//  guint trace_num = ts->parent.index;
-//  LttvProcessState *process = ts->running_process[cpu];
-//  g_assert(process != NULL);
-//
-//  guint pid = process->pid;
+  hashed_process_data = resourcelist_obtain_bdev(resourceview_data, trace_num, devcode_gint);
+    ////hashed_process_data = processlist_get_process_data(process_list, resourceq, trace_num);
+//    hashed_process_data = processlist_get_process_data(process_list,
+//            pid,
+//            process->cpu,
+//            &birth,
+//            trace_num);
 //
-//  /* Well, the process_out existed : we must get it in the process hash
-//   * or add it, and draw its items.
-//   */
-//   /* Add process to process list (if not present) */
-//  guint pl_height = 0;
-//  HashedResourceData *hashed_process_data = NULL;
-//  ProcessList *process_list = control_flow_data->process_list;
-//  LttTime birth = process->creation_time;
-// 
-//  if(likely(process_list->current_hash_data[trace_num][cpu] != NULL)) {
-//    hashed_process_data = process_list->current_hash_data[trace_num][cpu];
-//  } else {
-//    hashed_process_data = processlist_get_process_data(process_list, "CPU0");
-////    hashed_process_data = processlist_get_process_data(process_list,
-////            pid,
-////            process->cpu,
-////            &birth,
-////            trace_num);
-//    if(unlikely(hashed_process_data == NULL))
-//    {
-//      g_assert(pid == 0 || pid != process->ppid);
-//      ResourceInfo *process_info;
-//      /* Process not present */
-//      Drawing_t *drawing = control_flow_data->drawing;
-//      processlist_add(process_list,
-//          drawing,
-//          pid,
-//          process->tgid,
-//          process->cpu,
-//          process->ppid,
-//          &birth,
-//          trace_num,
-//          process->name,
-//       process->brand,
-//          &pl_height,
-//          &process_info,
-//          &hashed_process_data);
-//        gtk_widget_set_size_request(drawing->drawing_area,
-//                                    -1,
-//                                    pl_height);
-//        gtk_widget_queue_draw(drawing->drawing_area);
-//    }
-//    /* Set the current process */
+    /* Set the current process */
 //    process_list->current_hash_data[trace_num][process->cpu] =
 //                                               hashed_process_data;
 //  }
-//
-//  processlist_set_brand(process_list, process->brand, hashed_process_data);
-//
-//  return 0;
-//
-//}
 
+  /* Now, the process is in the state hash and our own process hash.
+   * We definitely can draw the items related to the ending state.
+   */
 
-/* after_event_enum_process_hook
- * 
- * Create the processlist entry for the child process. Put the last
- * position in x at the current time value.
- *
- * @param hook_data ControlFlowData structure of the viewer. 
- * @param call_data Event context.
- *
- * This function adds items to be drawn in a queue for each process.
- * 
- */
-//int after_event_enum_process_hook(void *hook_data, void *call_data)
-//{
-//  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-//  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-//  ControlFlowData *control_flow_data = events_request->viewer_data;
-//
-//  LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
-//
-//  LttvTracefileState *tfs = (LttvTracefileState *)call_data;
-//
-//  LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
-//
-//  guint first_cpu, nb_cpus, cpu;
-//
-//  LttEvent *e;
-//  e = ltt_tracefile_get_event(tfc->tf);
-//
-//  LttvFilter *filter = control_flow_data->filter;
-//  if(filter != NULL && filter->head != NULL)
-//    if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
-//          tfc->t_context->t,tfc,NULL,NULL))
-//      return FALSE;
-//
-//  LttTime evtime = ltt_event_time(e);
-//
-//  /* Add process to process list (if not present) */
-//  LttvProcessState *process_in;
-//  LttTime birth;
-//  guint pl_height = 0;
-//  HashedResourceData *hashed_process_data_in = NULL;
-//
-//  ProcessList *process_list = control_flow_data->process_list;
-//  guint trace_num = ts->parent.index;
-//  
-//  guint pid_in;
-//  {
-//    pid_in = ltt_event_get_long_unsigned(e, thf->f1);
-//  }
-//  
-//  if(pid_in == 0) {
-//    first_cpu = 0;
-//    nb_cpus = ltt_trace_get_num_cpu(ts->parent.t);
-//  } else {
-//    first_cpu = ANY_CPU;
-//    nb_cpus = ANY_CPU+1;
-//  }
-//
-//  for(cpu = first_cpu; cpu < nb_cpus; cpu++) {
-//    /* Find process pid_in in the list... */
-//    process_in = lttv_state_find_process(ts, cpu, pid_in);
-//    //process_in = tfs->process;
-//    //guint cpu = tfs->cpu;
-//    //guint trace_num = ts->parent.index;
-//    //process_in = ts->running_process[cpu];
-//    /* It should exist, because we are after the state update. */
-//  #ifdef EXTRA_CHECK
-//    //g_assert(process_in != NULL);
-//  #endif //EXTRA_CHECK
-//    birth = process_in->creation_time;
-//
-//    hashed_process_data_in = processlist_get_process_data(process_list, "CPU0");
-////    hashed_process_data_in = processlist_get_process_data(process_list,
-////            pid_in,
-////            process_in->cpu,
-////            &birth,
-////            trace_num);
-//    if(hashed_process_data_in == NULL)
-//    {
-//      if(pid_in != 0 && pid_in == process_in->ppid)
-//        g_critical("TEST %u , %u", pid_in, process_in->ppid);
-//      g_assert(pid_in == 0 || pid_in != process_in->ppid);
-//      ResourceInfo *process_info;
-//      Drawing_t *drawing = control_flow_data->drawing;
-//      /* Process not present */
-//      processlist_add(process_list,
-//          drawing,
-//          pid_in,
-//          process_in->tgid,
-//          process_in->cpu,
-//          process_in->ppid,
-//          &birth,
-//          trace_num,
-//          process_in->name,
-//          process_in->brand,
-//          &pl_height,
-//          &process_info,
-//          &hashed_process_data_in);
-//          gtk_widget_set_size_request(drawing->drawing_area,
-//                                      -1,
-//                                      pl_height);
-//          gtk_widget_queue_draw(drawing->drawing_area);
-//    } else {
-//      processlist_set_name(process_list, process_in->name,
-//                           hashed_process_data_in);
-//      processlist_set_ppid(process_list, process_in->ppid,
-//                           hashed_process_data_in);
-//      processlist_set_tgid(process_list, process_in->tgid,
-//                           hashed_process_data_in);
-//    }
-//  }
-//  return 0;
-//}
+  if(likely(ltt_time_compare(hashed_process_data->next_good_time,
+                      evtime) > 0))
+  {
+    if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
+      TimeWindow time_window = 
+        lttvwindow_get_time_window(resourceview_data->tab);
+
+#ifdef EXTRA_CHECK
+      if(ltt_time_compare(evtime, time_window.start_time) == -1
+            || ltt_time_compare(evtime, time_window.end_time) == 1)
+                return;
+#endif //EXTRA_CHECK
+      Drawing_t *drawing = resourceview_data->drawing;
+      guint width = drawing->width;
+      guint x;
+      convert_time_to_pixels(
+                time_window,
+                evtime,
+                width,
+                &x);
+
+      /* Draw collision indicator */
+      gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+      gdk_draw_point(hashed_process_data->pixmap,
+                     drawing->gc,
+                     x,
+                     COLLISION_POSITION(hashed_process_data->height));
+      hashed_process_data->x.middle_marked = TRUE;
+    }
+  }
+  else {
+    TimeWindow time_window = 
+      lttvwindow_get_time_window(resourceview_data->tab);
+
+#ifdef EXTRA_CHECK
+    if(ltt_time_compare(evtime, time_window.start_time) == -1
+          || ltt_time_compare(evtime, time_window.end_time) == 1)
+              return;
+#endif //EXTRA_CHECK
+    Drawing_t *drawing = resourceview_data->drawing;
+    guint width = drawing->width;
+    guint x;
+
+    convert_time_to_pixels(
+        time_window,
+        evtime,
+        width,
+        &x);
+
+
+    /* Jump over draw if we are at the same x position */
+    if(unlikely(x == hashed_process_data->x.middle &&
+             hashed_process_data->x.middle_used))
+    {
+      if(unlikely(hashed_process_data->x.middle_marked == FALSE)) {
+        /* Draw collision indicator */
+        gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+        gdk_draw_point(hashed_process_data->pixmap,
+                       drawing->gc,
+                       x,
+                       COLLISION_POSITION(hashed_process_data->height));
+        hashed_process_data->x.middle_marked = TRUE;
+      }
+      /* jump */
+    }
+    else {
+
+      DrawContext draw_context;
+      /* Now create the drawing context that will be used to draw
+       * items related to the last state. */
+      draw_context.drawable = hashed_process_data->pixmap;
+      draw_context.gc = drawing->gc;
+      draw_context.pango_layout = drawing->pango_layout;
+      draw_context.drawinfo.start.x = hashed_process_data->x.middle;
+      draw_context.drawinfo.end.x = x;
+
+      draw_context.drawinfo.y.over = 1;
+      draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
+      draw_context.drawinfo.y.under = hashed_process_data->height;
+
+      draw_context.drawinfo.start.offset.over = 0;
+      draw_context.drawinfo.start.offset.middle = 0;
+      draw_context.drawinfo.start.offset.under = 0;
+      draw_context.drawinfo.end.offset.over = 0;
+      draw_context.drawinfo.end.offset.middle = 0;
+      draw_context.drawinfo.end.offset.under = 0;
+
+      {
+        /* Draw the line */
+        PropertiesLine prop_line;
+        prop_line.line_width = STATE_LINE_WIDTH;
+        prop_line.style = GDK_LINE_SOLID;
+        prop_line.y = MIDDLE;
+        bdev_set_line_color(&prop_line, bdev);
+        draw_line((void*)&prop_line, (void*)&draw_context);
+      }
+      /* become the last x position */
+      hashed_process_data->x.middle = x;
+      hashed_process_data->x.middle_used = TRUE;
+      hashed_process_data->x.middle_marked = FALSE;
 
+      /* Calculate the next good time */
+      convert_pixels_to_time(width, x+1, time_window,
+                             &hashed_process_data->next_good_time);
+    }
+  }
+  
+  return 0;
+}
 
 gint update_time_window_hook(void *hook_data, void *call_data)
 {
-  ControlFlowData *control_flow_data = (ControlFlowData*) hook_data;
-  Drawing_t *drawing = control_flow_data->drawing;
-  ProcessList *process_list = control_flow_data->process_list;
+  ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
+  Drawing_t *drawing = resourceview_data->drawing;
+  ProcessList *process_list = resourceview_data->process_list;
 
   const TimeWindowNotifyData *time_window_nofify_data = 
                           ((const TimeWindowNotifyData *)call_data);
@@ -2037,7 +1497,7 @@ gint update_time_window_hook(void *hook_data, void *call_data)
     time_window_nofify_data->new_time_window;
   
   /* Update the ruler */
-  drawing_update_ruler(control_flow_data->drawing,
+  drawing_update_ruler(resourceview_data->drawing,
                        new_time_window);
 
 
@@ -2080,7 +1540,7 @@ gint update_time_window_hook(void *hook_data, void *call_data)
       g_info("scrolling near right");
       /* Scroll right, keep right part of the screen */
       guint x = 0;
-      guint width = control_flow_data->drawing->width;
+      guint width = resourceview_data->drawing->width;
       convert_time_to_pixels(
           *old_time_window,
           *ns,
@@ -2090,48 +1550,41 @@ gint update_time_window_hook(void *hook_data, void *call_data)
       /* Copy old data to new location */
       copy_pixmap_region(process_list,
                   NULL,
-                  control_flow_data->drawing->drawing_area->style->black_gc,
+                  resourceview_data->drawing->drawing_area->style->black_gc,
                   NULL,
                   x, 0,
                   0, 0,
-                  control_flow_data->drawing->width-x+SAFETY, -1);
+                  resourceview_data->drawing->width-x+SAFETY, -1);
 
       if(drawing->damage_begin == drawing->damage_end)
-        drawing->damage_begin = control_flow_data->drawing->width-x;
+        drawing->damage_begin = resourceview_data->drawing->width-x;
       else
         drawing->damage_begin = 0;
 
-      drawing->damage_end = control_flow_data->drawing->width;
+      drawing->damage_end = resourceview_data->drawing->width;
 
       /* Clear the data request background, but not SAFETY */
       rectangle_pixmap(process_list,
-          control_flow_data->drawing->drawing_area->style->black_gc,
+          resourceview_data->drawing->drawing_area->style->black_gc,
           TRUE,
           drawing->damage_begin+SAFETY, 0,
           drawing->damage_end - drawing->damage_begin,  // do not overlap
           -1);
       gtk_widget_queue_draw(drawing->drawing_area);
-      //gtk_widget_queue_draw_area (drawing->drawing_area,
-      //                          0,0,
-      //                          control_flow_data->drawing->width,
-      //                          control_flow_data->drawing->height);
 
       /* Get new data for the rest. */
-      drawing_data_request(control_flow_data->drawing,
+      drawing_data_request(resourceview_data->drawing,
           drawing->damage_begin, 0,
           drawing->damage_end - drawing->damage_begin,
-          control_flow_data->drawing->height);
+          resourceview_data->drawing->height);
     } else { 
-      //if(ns<os<ns+w)
-      //if(ns<os && os<ns+w)
-      //if(ns<os && os<new_end)
       if(ltt_time_compare(*ns,*os) == -1
           && ltt_time_compare(*os,new_end) == -1)
       {
         g_info("scrolling near left");
         /* Scroll left, keep left part of the screen */
         guint x = 0;
-        guint width = control_flow_data->drawing->width;
+        guint width = resourceview_data->drawing->width;
         convert_time_to_pixels(
             *new_time_window,
             *os,
@@ -2141,7 +1594,7 @@ gint update_time_window_hook(void *hook_data, void *call_data)
         /* Copy old data to new location */
         copy_pixmap_region  (process_list,
             NULL,
-            control_flow_data->drawing->drawing_area->style->black_gc,
+            resourceview_data->drawing->drawing_area->style->black_gc,
             NULL,
             0, 0,
             x, 0,
@@ -2151,29 +1604,24 @@ gint update_time_window_hook(void *hook_data, void *call_data)
           drawing->damage_end = x;
         else
           drawing->damage_end = 
-            control_flow_data->drawing->width;
+            resourceview_data->drawing->width;
 
         drawing->damage_begin = 0;
         
         rectangle_pixmap (process_list,
-          control_flow_data->drawing->drawing_area->style->black_gc,
+          resourceview_data->drawing->drawing_area->style->black_gc,
           TRUE,
           drawing->damage_begin, 0,
           drawing->damage_end - drawing->damage_begin,  // do not overlap
           -1);
 
         gtk_widget_queue_draw(drawing->drawing_area);
-        //gtk_widget_queue_draw_area (drawing->drawing_area,
-        //                        0,0,
-        //                        control_flow_data->drawing->width,
-        //                        control_flow_data->drawing->height);
-
 
         /* Get new data for the rest. */
-        drawing_data_request(control_flow_data->drawing,
+        drawing_data_request(resourceview_data->drawing,
             drawing->damage_begin, 0,
             drawing->damage_end - drawing->damage_begin,
-            control_flow_data->drawing->height);
+            resourceview_data->drawing->height);
     
       } else {
         if(ltt_time_compare(*ns,*os) == 0)
@@ -2185,25 +1633,21 @@ gint update_time_window_hook(void *hook_data, void *call_data)
           
           
           rectangle_pixmap (process_list,
-            control_flow_data->drawing->drawing_area->style->black_gc,
+            resourceview_data->drawing->drawing_area->style->black_gc,
             TRUE,
             0, 0,
-            control_flow_data->drawing->width+SAFETY, // do not overlap
+            resourceview_data->drawing->width+SAFETY, // do not overlap
             -1);
 
-          //gtk_widget_queue_draw_area (drawing->drawing_area,
-          //                      0,0,
-          //                      control_flow_data->drawing->width,
-          //                      control_flow_data->drawing->height);
           gtk_widget_queue_draw(drawing->drawing_area);
 
           drawing->damage_begin = 0;
-          drawing->damage_end = control_flow_data->drawing->width;
+          drawing->damage_end = resourceview_data->drawing->width;
 
-          drawing_data_request(control_flow_data->drawing,
+          drawing_data_request(resourceview_data->drawing,
               0, 0,
-              control_flow_data->drawing->width,
-              control_flow_data->drawing->height);
+              resourceview_data->drawing->width,
+              resourceview_data->drawing->height);
       
         }
       }
@@ -2213,29 +1657,25 @@ gint update_time_window_hook(void *hook_data, void *call_data)
     g_info("zoom");
 
     rectangle_pixmap (process_list,
-          control_flow_data->drawing->drawing_area->style->black_gc,
+          resourceview_data->drawing->drawing_area->style->black_gc,
           TRUE,
           0, 0,
-          control_flow_data->drawing->width+SAFETY, // do not overlap
+          resourceview_data->drawing->width+SAFETY, // do not overlap
           -1);
 
-    //gtk_widget_queue_draw_area (drawing->drawing_area,
-    //                            0,0,
-    //                            control_flow_data->drawing->width,
-    //                            control_flow_data->drawing->height);
     gtk_widget_queue_draw(drawing->drawing_area);
   
     drawing->damage_begin = 0;
-    drawing->damage_end = control_flow_data->drawing->width;
+    drawing->damage_end = resourceview_data->drawing->width;
 
-    drawing_data_request(control_flow_data->drawing,
+    drawing_data_request(resourceview_data->drawing,
         0, 0,
-        control_flow_data->drawing->width,
-        control_flow_data->drawing->height);
+        resourceview_data->drawing->width,
+        resourceview_data->drawing->height);
   }
 
   /* Update directly when scrolling */
-  gdk_window_process_updates(control_flow_data->drawing->drawing_area->window,
+  gdk_window_process_updates(resourceview_data->drawing->drawing_area->window,
       TRUE);
 
   return 0;
@@ -2243,8 +1683,8 @@ gint update_time_window_hook(void *hook_data, void *call_data)
 
 gint traceset_notify(void *hook_data, void *call_data)
 {
-  ControlFlowData *control_flow_data = (ControlFlowData*) hook_data;
-  Drawing_t *drawing = control_flow_data->drawing;
+  ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
+  Drawing_t *drawing = resourceview_data->drawing;
 
   if(unlikely(drawing->gc == NULL)) {
     return FALSE;
@@ -2253,35 +1693,35 @@ gint traceset_notify(void *hook_data, void *call_data)
     return FALSE;
   }
 
-  drawing_clear(control_flow_data->drawing);
-  processlist_clear(control_flow_data->process_list);
+  drawing_clear(resourceview_data->drawing);
+  processlist_clear(resourceview_data->process_list);
   gtk_widget_set_size_request(
-      control_flow_data->drawing->drawing_area,
-                -1, processlist_get_height(control_flow_data->process_list));
-  redraw_notify(control_flow_data, NULL);
+      resourceview_data->drawing->drawing_area,
+                -1, processlist_get_height(resourceview_data->process_list));
+  redraw_notify(resourceview_data, NULL);
 
-  request_background_data(control_flow_data);
+  request_background_data(resourceview_data);
  
   return FALSE;
 }
 
 gint redraw_notify(void *hook_data, void *call_data)
 {
-  ControlFlowData *control_flow_data = (ControlFlowData*) hook_data;
-  Drawing_t *drawing = control_flow_data->drawing;
+  ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
+  Drawing_t *drawing = resourceview_data->drawing;
   GtkWidget *widget = drawing->drawing_area;
 
   drawing->damage_begin = 0;
   drawing->damage_end = drawing->width;
 
   /* fun feature, to be separated someday... */
-  drawing_clear(control_flow_data->drawing);
-  processlist_clear(control_flow_data->process_list);
+  drawing_clear(resourceview_data->drawing);
+  processlist_clear(resourceview_data->process_list);
   gtk_widget_set_size_request(
-      control_flow_data->drawing->drawing_area,
-                -1, processlist_get_height(control_flow_data->process_list));
+      resourceview_data->drawing->drawing_area,
+                -1, processlist_get_height(resourceview_data->process_list));
   // Clear the images
-  rectangle_pixmap (control_flow_data->process_list,
+  rectangle_pixmap (resourceview_data->process_list,
         widget->style->black_gc,
         TRUE,
         0, 0,
@@ -2299,10 +1739,6 @@ gint redraw_notify(void *hook_data, void *call_data)
                          drawing->height);
   }
 
-  //gtk_widget_queue_draw_area(drawing->drawing_area,
-  //                           0,0,
-  //                           drawing->width,
-  //                           drawing->height);
   return FALSE;
 
 }
@@ -2310,10 +1746,8 @@ gint redraw_notify(void *hook_data, void *call_data)
 
 gint continue_notify(void *hook_data, void *call_data)
 {
-  ControlFlowData *control_flow_data = (ControlFlowData*) hook_data;
-  Drawing_t *drawing = control_flow_data->drawing;
-
-  //g_assert(widget->allocation.width == drawing->damage_end);
+  ControlFlowData *resourceview_data = (ControlFlowData*) hook_data;
+  Drawing_t *drawing = resourceview_data->drawing;
 
   if(drawing->damage_begin < drawing->damage_end)
   {
@@ -2330,13 +1764,13 @@ gint continue_notify(void *hook_data, void *call_data)
 
 gint update_current_time_hook(void *hook_data, void *call_data)
 {
-  ControlFlowData *control_flow_data = (ControlFlowData*)hook_data;
-  Drawing_t *drawing = control_flow_data->drawing;
+  ControlFlowData *resourceview_data = (ControlFlowData*)hook_data;
+  Drawing_t *drawing = resourceview_data->drawing;
 
   LttTime current_time = *((LttTime*)call_data);
   
   TimeWindow time_window =
-            lttvwindow_get_time_window(control_flow_data->tab);
+            lttvwindow_get_time_window(resourceview_data->tab);
   
   LttTime time_begin = time_window.start_time;
   LttTime width = time_window.time_width;
@@ -2349,15 +1783,13 @@ gint update_current_time_hook(void *hook_data, void *call_data)
   LttTime time_end = ltt_time_add(time_begin, width);
 
   LttvTracesetContext * tsc =
-        lttvwindow_get_traceset_context(control_flow_data->tab);
+        lttvwindow_get_traceset_context(resourceview_data->tab);
   
   LttTime trace_start = tsc->time_span.start_time;
   LttTime trace_end = tsc->time_span.end_time;
   
   g_info("New current time HOOK : %lu, %lu", current_time.tv_sec,
               current_time.tv_nsec);
-
-
   
   /* If current time is inside time interval, just move the highlight
    * bar */
@@ -2384,7 +1816,7 @@ gint update_current_time_hook(void *hook_data, void *call_data)
     new_time_window.time_width_double = ltt_time_to_double(width);
     new_time_window.end_time = ltt_time_add(time_begin, width);
 
-    lttvwindow_report_time_window(control_flow_data->tab, new_time_window);
+    lttvwindow_report_time_window(resourceview_data->tab, new_time_window);
   }
   else if(ltt_time_compare(current_time, time_end) > 0)
   {
@@ -2400,13 +1832,13 @@ gint update_current_time_hook(void *hook_data, void *call_data)
     new_time_window.time_width_double = ltt_time_to_double(width);
     new_time_window.end_time = ltt_time_add(time_begin, width);
 
-    lttvwindow_report_time_window(control_flow_data->tab, new_time_window);
+    lttvwindow_report_time_window(resourceview_data->tab, new_time_window);
     
   }
-  gtk_widget_queue_draw(control_flow_data->drawing->drawing_area);
+  gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
   
   /* Update directly when scrolling */
-  gdk_window_process_updates(control_flow_data->drawing->drawing_area->window,
+  gdk_window_process_updates(resourceview_data->drawing->drawing_area->window,
       TRUE);
                              
   return 0;
@@ -2423,12 +1855,12 @@ typedef struct _ClosureData {
 
 void draw_closure(gpointer key, gpointer value, gpointer user_data)
 {
-  ResourceInfo *process_info = (ResourceInfo*)key;
+  ResourceUniqueNumeric *process_info = (ResourceUniqueNumeric*)key;
   HashedResourceData *hashed_process_data = (HashedResourceData*)value;
   ClosureData *closure_data = (ClosureData*)user_data;
     
   EventsRequest *events_request = closure_data->events_request;
-  ControlFlowData *control_flow_data = events_request->viewer_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
 
   LttvTracesetState *tss = closure_data->tss;
   LttvTracesetContext *tsc = (LttvTracesetContext*)tss;
@@ -2437,6 +1869,9 @@ void draw_closure(gpointer key, gpointer value, gpointer user_data)
 
   gboolean dodraw = TRUE;
 
+  if(hashed_process_data->type == RV_RESOURCE_MACHINE)
+       return;
+
   { 
     /* For the process */
     /* First, check if the current process is in the state computation
@@ -2450,143 +1885,123 @@ void draw_closure(gpointer key, gpointer value, gpointer user_data)
     LttvTraceContext *tc = tsc->traces[process_info->trace_num];
     LttvTraceState *ts = (LttvTraceState*)tc;
 
-#if 0
-    //FIXME : optimize data structures.
-    LttvTracefileState *tfs;
-    LttvTracefileContext *tfc;
-    guint i;
-    for(i=0;i<tc->tracefiles->len;i++) {
-      tfc = g_array_index(tc->tracefiles, LttvTracefileContext*, i);
-      if(ltt_tracefile_name(tfc->tf) == LTT_NAME_CPU
-          && tfs->cpu == process_info->cpu)
-        break;
-
-    }
-    g_assert(i<tc->tracefiles->len);
-    tfs = LTTV_TRACEFILE_STATE(tfc);
-#endif //0
- //   LttvTracefileState *tfs =
- //    (LttvTracefileState*)tsc->traces[process_info->trace_num]->
- //                        tracefiles[process_info->cpu];
-//    LttvProcessState *process;
-//    process = lttv_state_find_process(ts, process_info->cpu,
-//                                      process_info->pid);
-
-//    if(unlikely(process != NULL)) {
-      
-//       LttvFilter *filter = control_flow_data->filter;
-//       if(filter != NULL && filter->head != NULL)
-//         if(!lttv_filter_tree_parse(filter->head,NULL,NULL,
-//             tc->t,NULL,process,tc))
-//           dodraw = FALSE;
-
-      /* Only draw for processes that are currently in the trace states */
+    /* Only draw for processes that are currently in the trace states */
 
-      ProcessList *process_list = control_flow_data->process_list;
+    ProcessList *process_list = resourceview_data->process_list;
 #ifdef EXTRA_CHECK
-      /* Should be alike when background info is ready */
-      if(control_flow_data->background_info_waiting==0)
+    /* Should be alike when background info is ready */
+    if(resourceview_data->background_info_waiting==0)
         g_assert(ltt_time_compare(process->creation_time,
                                   process_info->birth) == 0);
 #endif //EXTRA_CHECK
     
-      /* Now, the process is in the state hash and our own process hash.
-       * We definitely can draw the items related to the ending state.
-       */
-      
-      if(unlikely(ltt_time_compare(hashed_process_data->next_good_time,
-                            evtime) <= 0))
-      {
-        TimeWindow time_window = 
-          lttvwindow_get_time_window(control_flow_data->tab);
+    /* Now, the process is in the state hash and our own process hash.
+     * We definitely can draw the items related to the ending state.
+     */
+    
+    if(unlikely(ltt_time_compare(hashed_process_data->next_good_time,
+                          evtime) <= 0))
+    {
+      TimeWindow time_window = 
+        lttvwindow_get_time_window(resourceview_data->tab);
 
 #ifdef EXTRA_CHECK
-        if(ltt_time_compare(evtime, time_window.start_time) == -1
-              || ltt_time_compare(evtime, time_window.end_time) == 1)
-                  return;
+      if(ltt_time_compare(evtime, time_window.start_time) == -1
+            || ltt_time_compare(evtime, time_window.end_time) == 1)
+                return;
 #endif //EXTRA_CHECK
-        Drawing_t *drawing = control_flow_data->drawing;
-        guint width = drawing->width;
-
-        guint x = closure_data->x_end;
-
-        DrawContext draw_context;
-
-        /* Now create the drawing context that will be used to draw
-         * items related to the last state. */
-        draw_context.drawable = hashed_process_data->pixmap;
-        draw_context.gc = drawing->gc;
-        draw_context.pango_layout = drawing->pango_layout;
-        draw_context.drawinfo.end.x = x;
-
-        draw_context.drawinfo.y.over = 1;
-        draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
-        draw_context.drawinfo.y.under = hashed_process_data->height;
-
-        draw_context.drawinfo.start.offset.over = 0;
-        draw_context.drawinfo.start.offset.middle = 0;
-        draw_context.drawinfo.start.offset.under = 0;
-        draw_context.drawinfo.end.offset.over = 0;
-        draw_context.drawinfo.end.offset.middle = 0;
-        draw_context.drawinfo.end.offset.under = 0;
+      Drawing_t *drawing = resourceview_data->drawing;
+      guint width = drawing->width;
+
+      guint x = closure_data->x_end;
+
+      DrawContext draw_context;
+
+      /* Now create the drawing context that will be used to draw
+       * items related to the last state. */
+      draw_context.drawable = hashed_process_data->pixmap;
+      draw_context.gc = drawing->gc;
+      draw_context.pango_layout = drawing->pango_layout;
+      draw_context.drawinfo.end.x = x;
+
+      draw_context.drawinfo.y.over = 1;
+      draw_context.drawinfo.y.middle = (hashed_process_data->height/2);
+      draw_context.drawinfo.y.under = hashed_process_data->height;
+
+      draw_context.drawinfo.start.offset.over = 0;
+      draw_context.drawinfo.start.offset.middle = 0;
+      draw_context.drawinfo.start.offset.under = 0;
+      draw_context.drawinfo.end.offset.over = 0;
+      draw_context.drawinfo.end.offset.middle = 0;
+      draw_context.drawinfo.end.offset.under = 0;
 #if 0
-        /* Jump over draw if we are at the same x position */
-        if(x == hashed_process_data->x.over)
-        {
-          /* jump */
-        } else {
-          draw_context.drawinfo.start.x = hashed_process_data->x.over;
-          /* Draw the line */
-          PropertiesLine prop_line = prepare_execmode_line(process);
-          draw_line((void*)&prop_line, (void*)&draw_context);
+      /* Jump over draw if we are at the same x position */
+      if(x == hashed_process_data->x.over)
+      {
+        /* jump */
+      } else {
+        draw_context.drawinfo.start.x = hashed_process_data->x.over;
+        /* Draw the line */
+        PropertiesLine prop_line = prepare_execmode_line(process);
+        draw_line((void*)&prop_line, (void*)&draw_context);
 
-          hashed_process_data->x.over = x;
-        }
+        hashed_process_data->x.over = x;
+      }
 #endif //0
 
-        if(unlikely(x == hashed_process_data->x.middle &&
-            hashed_process_data->x.middle_used)) {
+      if(unlikely(x == hashed_process_data->x.middle &&
+          hashed_process_data->x.middle_used)) {
 #if 0 /* do not mark closure : not missing information */
-          if(hashed_process_data->x.middle_marked == FALSE) {
-            /* Draw collision indicator */
-            gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
-            gdk_draw_point(drawing->pixmap,
-                           drawing->gc,
-                           x,
-                           y+(height/2)-3);
-            hashed_process_data->x.middle_marked = TRUE;
-          }
+      if(hashed_process_data->x.middle_marked == FALSE) {
+        /* Draw collision indicator */
+        gdk_gc_set_foreground(drawing->gc, &drawing_colors[COL_WHITE]);
+        gdk_draw_point(drawing->pixmap,
+                       drawing->gc,
+                       x,
+                       y+(height/2)-3);
+        hashed_process_data->x.middle_marked = TRUE;
+      }
 #endif //0
-          /* Jump */
-        } else {
-          draw_context.drawinfo.start.x = hashed_process_data->x.middle;
-          /* Draw the line */
-          if(dodraw) {
-            PropertiesLine prop_line;
-            prop_line.line_width = STATE_LINE_WIDTH;
-            prop_line.style = GDK_LINE_SOLID;
-            prop_line.y = MIDDLE;
-            cpu_set_line_color(&prop_line, ts->cpu_states[process_info->id].present_state);
-            
-            draw_line((void*)&prop_line, (void*)&draw_context);
+        /* Jump */
+      } else {
+        draw_context.drawinfo.start.x = hashed_process_data->x.middle;
+        /* Draw the line */
+        if(dodraw) {
+          PropertiesLine prop_line;
+          prop_line.line_width = STATE_LINE_WIDTH;
+          prop_line.style = GDK_LINE_SOLID;
+          prop_line.y = MIDDLE;
+          if(hashed_process_data->type == RV_RESOURCE_CPU)
+            cpu_set_line_color(&prop_line, &ts->cpu_states[process_info->id]);
+          else if(hashed_process_data->type == RV_RESOURCE_IRQ)
+            irq_set_line_color(&prop_line, &ts->irq_states[process_info->id]);
+          else if(hashed_process_data->type == RV_RESOURCE_SOFT_IRQ)
+            soft_irq_set_line_color(&prop_line, &ts->soft_irq_states[process_info->id]);
+          else if(hashed_process_data->type == RV_RESOURCE_TRAP)
+            trap_set_line_color(&prop_line, &ts->trap_states[process_info->id]);
+          else if(hashed_process_data->type == RV_RESOURCE_BDEV) {
+            gint devcode_gint = process_info->id;
+            LttvBdevState *bdev = g_hash_table_lookup(ts->bdev_states, &devcode_gint);
+            // the lookup may return null; bdev_set_line_color must act appropriately
+            bdev_set_line_color(&prop_line, bdev);
           }
+          
+          draw_line((void*)&prop_line, (void*)&draw_context);
+        }
 
-           /* become the last x position */
-          if(likely(x != hashed_process_data->x.middle)) {
-            hashed_process_data->x.middle = x;
-            /* but don't use the pixel */
-            hashed_process_data->x.middle_used = FALSE;
+         /* become the last x position */
+        if(likely(x != hashed_process_data->x.middle)) {
+          hashed_process_data->x.middle = x;
+          /* but don't use the pixel */
+          hashed_process_data->x.middle_used = FALSE;
 
-            /* Calculate the next good time */
-            convert_pixels_to_time(width, x+1, time_window,
-                                  &hashed_process_data->next_good_time);
-          }
+          /* Calculate the next good time */
+          convert_pixels_to_time(width, x+1, time_window,
+                                &hashed_process_data->next_good_time);
         }
       }
-//    }
+    }
   }
-  return;
 }
 
 int before_chunk(void *hook_data, void *call_data)
@@ -2595,7 +2010,7 @@ int before_chunk(void *hook_data, void *call_data)
   LttvTracesetState *tss = (LttvTracesetState*)call_data;
   ControlFlowData *cfd = (ControlFlowData*)events_request->viewer_data;
 #if 0  
-  /* Desactivate sort */
+  /* Deactivate sort */
   gtk_tree_sortable_set_sort_column_id(
       GTK_TREE_SORTABLE(cfd->process_list->list_store),
       TRACE_COLUMN,
@@ -2626,38 +2041,39 @@ int before_request(void *hook_data, void *call_data)
  *    draw closing line
  *    expose
  */
-// TODO pmf: reenable this
 int after_request(void *hook_data, void *call_data)
 {
-//  EventsRequest *events_request = (EventsRequest*)hook_data;
-//  ControlFlowData *control_flow_data = events_request->viewer_data;
-//  LttvTracesetState *tss = (LttvTracesetState*)call_data;
-//  
-//  ProcessList *process_list = control_flow_data->process_list;
-//  LttTime end_time = events_request->end_time;
-//
-//  ClosureData closure_data;
-//  closure_data.events_request = (EventsRequest*)hook_data;
-//  closure_data.tss = tss;
-//  closure_data.end_time = end_time;
-//
-//  TimeWindow time_window = 
-//          lttvwindow_get_time_window(control_flow_data->tab);
-//  guint width = control_flow_data->drawing->width;
-//  convert_time_to_pixels(
-//            time_window,
-//            end_time,
-//            width,
-//            &closure_data.x_end);
-//
-//
-//  /* Draw last items */
-//  g_hash_table_foreach(process_list->process_hash, draw_closure,
-//                        (void*)&closure_data);
-//  
-//
-//  /* Request expose */
-//  drawing_request_expose(events_request, tss, end_time);
+  guint i;
+  EventsRequest *events_request = (EventsRequest*)hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
+  LttvTracesetState *tss = (LttvTracesetState*)call_data;
+  
+  ProcessList *process_list = resourceview_data->process_list;
+  LttTime end_time = events_request->end_time;
+
+  ClosureData closure_data;
+  closure_data.events_request = (EventsRequest*)hook_data;
+  closure_data.tss = tss;
+  closure_data.end_time = end_time;
+
+  TimeWindow time_window = 
+          lttvwindow_get_time_window(resourceview_data->tab);
+  guint width = resourceview_data->drawing->width;
+  convert_time_to_pixels(
+            time_window,
+            end_time,
+            width,
+            &closure_data.x_end);
+
+
+  /* Draw last items */
+  for(i=0; i<RV_RESOURCE_COUNT; i++) {
+    g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
+                        (void*)&closure_data);
+  }
+  
+  /* Request expose */
+  drawing_request_expose(events_request, tss, end_time);
   return 0;
 }
 
@@ -2669,13 +2085,13 @@ int after_request(void *hook_data, void *call_data)
 int after_chunk(void *hook_data, void *call_data)
 {
   EventsRequest *events_request = (EventsRequest*)hook_data;
-  ControlFlowData *control_flow_data = events_request->viewer_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
   LttvTracesetState *tss = (LttvTracesetState*)call_data;
   LttvTracesetContext *tsc = (LttvTracesetContext*)call_data;
   LttvTracefileContext *tfc = lttv_traceset_context_get_current_tfc(tsc);
   LttTime end_time;
   
-  ProcessList *process_list = control_flow_data->process_list;
+  ProcessList *process_list = resourceview_data->process_list;
   guint i;
   LttvTraceset *traceset = tsc->ts;
   guint nb_trace = lttv_traceset_number(traceset);
@@ -2700,8 +2116,8 @@ int after_chunk(void *hook_data, void *call_data)
   closure_data.end_time = end_time;
 
   TimeWindow time_window = 
-          lttvwindow_get_time_window(control_flow_data->tab);
-  guint width = control_flow_data->drawing->width;
+          lttvwindow_get_time_window(resourceview_data->tab);
+  guint width = resourceview_data->drawing->width;
   convert_time_to_pixels(
             time_window,
             end_time,
@@ -2709,18 +2125,20 @@ int after_chunk(void *hook_data, void *call_data)
             &closure_data.x_end);
 
   /* Draw last items */
-  g_hash_table_foreach(process_list->process_hash, draw_closure,
+  for(i=0; i<RV_RESOURCE_COUNT; i++) {
+    g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
                         (void*)&closure_data);
+  }
 #if 0
   /* Reactivate sort */
   gtk_tree_sortable_set_sort_column_id(
-      GTK_TREE_SORTABLE(control_flow_data->process_list->list_store),
+      GTK_TREE_SORTABLE(resourceview_data->process_list->list_store),
       GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
       GTK_SORT_ASCENDING);
 
-  update_index_to_pixmap(control_flow_data->process_list);
+  update_index_to_pixmap(resourceview_data->process_list);
   /* Request a full expose : drawing scrambled */
-  gtk_widget_queue_draw(control_flow_data->drawing->drawing_area);
+  gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
 #endif //0
   /* Request expose (updates damages zone also) */
   drawing_request_expose(events_request, tss, end_time);
@@ -2738,9 +2156,11 @@ int after_chunk(void *hook_data, void *call_data)
  */
 int before_statedump_end(void *hook_data, void *call_data)
 {
-  LttvTraceHookByFacility *thf = (LttvTraceHookByFacility*)hook_data;
-  EventsRequest *events_request = (EventsRequest*)thf->hook_data;
-  ControlFlowData *control_flow_data = events_request->viewer_data;
+  gint i;
+
+  LttvTraceHook *th = (LttvTraceHook*)hook_data;
+  EventsRequest *events_request = (EventsRequest*)th->hook_data;
+  ControlFlowData *resourceview_data = events_request->viewer_data;
 
   LttvTracefileContext *tfc = (LttvTracefileContext *)call_data;
 
@@ -2749,12 +2169,12 @@ int before_statedump_end(void *hook_data, void *call_data)
   LttvTraceState *ts = (LttvTraceState *)tfc->t_context;
 
   LttvTracesetState *tss = (LttvTracesetState*)tfc->t_context->ts_context;
-  ProcessList *process_list = control_flow_data->process_list;
+  ProcessList *process_list = resourceview_data->process_list;
 
   LttEvent *e;
   e = ltt_tracefile_get_event(tfc->tf);
 
-  LttvFilter *filter = control_flow_data->filter;
+  LttvFilter *filter = resourceview_data->filter;
   if(filter != NULL && filter->head != NULL)
     if(!lttv_filter_tree_parse(filter->head,e,tfc->tf,
           tfc->t_context->t,tfc,NULL,NULL))
@@ -2768,8 +2188,8 @@ int before_statedump_end(void *hook_data, void *call_data)
   closure_data.end_time = evtime;
 
   TimeWindow time_window = 
-          lttvwindow_get_time_window(control_flow_data->tab);
-  guint width = control_flow_data->drawing->width;
+          lttvwindow_get_time_window(resourceview_data->tab);
+  guint width = resourceview_data->drawing->width;
   convert_time_to_pixels(
             time_window,
             evtime,
@@ -2777,18 +2197,21 @@ int before_statedump_end(void *hook_data, void *call_data)
             &closure_data.x_end);
 
   /* Draw last items */
-  g_hash_table_foreach(process_list->process_hash, draw_closure,
+  
+  for(i=0; i<RV_RESOURCE_COUNT; i++) {
+    g_hash_table_foreach(resourcelist_get_resource_hash_table(resourceview_data, i), draw_closure,
                         (void*)&closure_data);
+  }
 #if 0
   /* Reactivate sort */
   gtk_tree_sortable_set_sort_column_id(
-      GTK_TREE_SORTABLE(control_flow_data->process_list->list_store),
+      GTK_TREE_SORTABLE(resourceview_data->process_list->list_store),
       GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
       GTK_SORT_ASCENDING);
 
-  update_index_to_pixmap(control_flow_data->process_list);
+  update_index_to_pixmap(resourceview_data->process_list);
   /* Request a full expose : drawing scrambled */
-  gtk_widget_queue_draw(control_flow_data->drawing->drawing_area);
+  gtk_widget_queue_draw(resourceview_data->drawing->drawing_area);
 #endif //0
   /* Request expose (updates damages zone also) */
   drawing_request_expose(events_request, tss, evtime);
This page took 0.061693 seconds and 4 git commands to generate.