Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[simix] Declare the real type of the argument od run_kernel()
[simgrid.git] / src / simix / popping.cpp
index 832686d..8e93873 100644 (file)
@@ -40,8 +40,7 @@ void SIMIX_simcall_exit(smx_synchro_t synchro)
   synchro->post();
 }
 
-void SIMIX_run_kernel(void* code)
+void SIMIX_run_kernel(std::function<void()> const* code)
 {
-  std::function<void()>* function = (std::function<void()>*) code;
-  (*function)();
+  (*code)();
 }