Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] there is no need to set surf actions category like this anymore
[simgrid.git] / src / simix / smx_host.c
index 8bcbf47..a85b8ff 100644 (file)
@@ -202,7 +202,6 @@ smx_action_t SIMIX_host_execute(const char *name, smx_host_t host,
 
 #ifdef HAVE_TRACING
   TRACE_smx_host_execute(action);
-  TRACE_surf_action(action->execution.surf_exec, action->category);
 #endif
 
   DEBUG1("Create execute action %p", action);
@@ -395,7 +394,11 @@ void SIMIX_post_host_execute(smx_action_t action)
 #ifdef HAVE_TRACING
 void SIMIX_set_category(smx_action_t action, const char *category)
 {
-  surf_workstation_model->set_category(action->execution.surf_exec, category);
+  if (action->type == SIMIX_ACTION_EXECUTE){
+    surf_workstation_model->set_category(action->execution.surf_exec, category);
+  }else if (action->type == SIMIX_ACTION_COMMUNICATE){
+    surf_workstation_model->set_category(action->comm.surf_comm, category);
+  }
 }
 #endif