Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] only set category of the surf action if simix action is running
[simgrid.git] / src / simix / smx_host.c
index a85b8ff..aadb21b 100644 (file)
@@ -394,6 +394,7 @@ void SIMIX_post_host_execute(smx_action_t action)
 #ifdef HAVE_TRACING
 void SIMIX_set_category(smx_action_t action, const char *category)
 {
+  if (action->state != SIMIX_RUNNING) return;
   if (action->type == SIMIX_ACTION_EXECUTE){
     surf_workstation_model->set_category(action->execution.surf_exec, category);
   }else if (action->type == SIMIX_ACTION_COMMUNICATE){