X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc4ca208c5e056ac569cd07e08f09a416f3606fe..c533259777a80ef9daddc0a5f9d0e265a289f1b0:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index f616cf57b7..f4638defd3 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -36,11 +36,11 @@ inline static R simcall(e_smx_simcall_t call, T const&... t) return simgrid::simix::unmarshal(self->simcall.result); } -inline static void simcall_BODY_process_killall(int reset_pid) +inline static void simcall_BODY_process_killall() { if (0) /* Go to that function to follow the code flow through the simcall barrier */ - simcall_HANDLER_process_killall(&SIMIX_process_self()->simcall, reset_pid); - return simcall(SIMCALL_PROCESS_KILLALL, reset_pid); + simcall_HANDLER_process_killall(&SIMIX_process_self()->simcall); + return simcall(SIMCALL_PROCESS_KILLALL); } inline static void simcall_BODY_process_cleanup(smx_actor_t process) @@ -75,7 +75,7 @@ inline static boost::intrusive_ptr simcall_BODY_execution_start(const char* name, double flops_amount, double priority, double bound, sg_host_t host) { if (0) /* Go to that function to follow the code flow through the simcall barrier */ - simcall_HANDLER_execution_start(&SIMIX_process_self()->simcall, name, flops_amount, priority, bound, host); + SIMIX_execution_start(name, flops_amount, priority, bound, host); return simcall, const char*, double, double, double, sg_host_t>(SIMCALL_EXECUTION_START, name, flops_amount, priority, bound, host); }