Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] remove "executing" state from tracing/msg/process option, easing the gantt...
authorschnorr <Lucas.Schnorr@imag.fr>
Tue, 3 Apr 2012 08:56:35 +0000 (10:56 +0200)
committerschnorr <Lucas.Schnorr@imag.fr>
Tue, 3 Apr 2012 08:56:35 +0000 (10:56 +0200)
details:
- if you feel this is still necessary, submit a bug

src/instr/instr_msg_process.c
src/instr/instr_routing.c

index 9146943..fc96c0c 100644 (file)
@@ -47,11 +47,6 @@ void TRACE_msg_process_change_host(m_process_t process, m_host_t old_host, m_hos
     //create new container on the new_host location
     msg = PJ_container_new(instr_process_id(process, str, len), INSTR_MSG_PROCESS, PJ_container_get(new_host->name));
 
-    //set the state of this new container
-    type = PJ_type_get ("MSG_PROCESS_STATE", msg->type);
-    val_t value = PJ_value_get ("executing", type);
-    new_pajeSetState (MSG_get_clock(), msg, type, value);
-
     //end link
     msg = PJ_container_get(instr_process_id(process, str, len));
     type = PJ_type_get ("MSG_PROCESS_LINK", PJ_type_get_root());
@@ -66,11 +61,7 @@ void TRACE_msg_process_create (const char *process_name, int process_pid, m_host
     char str[INSTR_DEFAULT_STR_SIZE];
 
     container_t host_container = PJ_container_get (host->name);
-    container_t msg = PJ_container_new(instr_process_id_2(process_name, process_pid, str, len), INSTR_MSG_PROCESS, host_container);
-
-    type_t type = PJ_type_get ("MSG_PROCESS_STATE", msg->type);
-    val_t value = PJ_value_get ("executing", type);
-    new_pajeSetState (MSG_get_clock(), msg, type, value);
+    PJ_container_new(instr_process_id_2(process_name, process_pid, str, len), INSTR_MSG_PROCESS, host_container);
   }
 }
 
index fa8b22c..28e3871 100644 (file)
@@ -307,7 +307,6 @@ static void instr_routing_parse_start_host (sg_platf_host_cbarg_t host)
     if (msg_process == NULL){
       msg_process = PJ_type_container_new("MSG_PROCESS", new->type);
       type_t state = PJ_type_state_new ("MSG_PROCESS_STATE", msg_process);
-      PJ_value_new ("executing", "0 1 0", state);
       PJ_value_new ("suspend", "1 0 1", state);
       PJ_value_new ("sleep", "1 1 0", state);
       PJ_value_new ("receive", "1 0 0", state);