Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] arrows to indicate msg process migration
[simgrid.git] / src / instr / instr_routing.c
index 06c2898..2e27c8e 100644 (file)
@@ -513,11 +513,14 @@ static void instr_routing_parse_start_host ()
   }
 
   if (TRACE_msg_process_is_enabled()) {
-    getContainerType("MSG_PROCESS", new->type);
+    type_t msg_process = getContainerType("MSG_PROCESS", new->type);
+    getStateType ("MSG_PROCESS_STATE", msg_process);
+    getLinkType ("MSG_PROCESS_LINK", rootType, msg_process, msg_process);
   }
 
   if (TRACE_msg_task_is_enabled()) {
-    getContainerType ("MSG_TASK", new->type);
+    type_t msg_task = getContainerType ("MSG_TASK", new->type);
+    getStateType ("MSG_TASK_STATE", msg_task);
   }
 }