Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove superfluous indirection.
[simgrid.git] / src / simix / popping_generated.cpp
index 095603e..b9b4caa 100644 (file)
@@ -19,6 +19,7 @@
 #if SIMGRID_HAVE_MC
 #include "src/mc/mc_forward.hpp"
 #endif
+#include "src/kernel/activity/ConditionVariableImpl.hpp"
 #include "src/simix/smx_host_private.hpp"
 #include "src/simix/smx_synchro_private.hpp"
 
@@ -186,7 +187,7 @@ case SIMCALL_COND_INIT:
   break;
 
 case SIMCALL_COND_SIGNAL:
-  SIMIX_cond_signal(simgrid::simix::unmarshal<smx_cond_t>(simcall->args[0]));
+  simcall_HANDLER_cond_signal(simcall, simgrid::simix::unmarshal<smx_cond_t>(simcall->args[0]));
   SIMIX_simcall_answer(simcall);
   break;
 
@@ -199,7 +200,7 @@ case SIMCALL_COND_WAIT_TIMEOUT:
   break;
 
 case SIMCALL_COND_BROADCAST:
-  SIMIX_cond_broadcast(simgrid::simix::unmarshal<smx_cond_t>(simcall->args[0]));
+  simcall_HANDLER_cond_broadcast(simcall, simgrid::simix::unmarshal<smx_cond_t>(simcall->args[0]));
   SIMIX_simcall_answer(simcall);
   break;