X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c38143adc86564307b6ba1b1861ce622116b1bad..cdef428603e68472f5999bdcc382748f8eb5b7de:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index 4234bb929c..06549e00ea 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -64,11 +64,11 @@ inline static int simcall_BODY_execution_wait(simgrid::kernel::activity::ExecImp return simcall(SIMCALL_EXECUTION_WAIT, execution); } -inline static int simcall_BODY_execution_test(simgrid::kernel::activity::ExecImpl* execution) +inline static bool simcall_BODY_execution_test(simgrid::kernel::activity::ExecImpl* execution) { if (0) /* Go to that function to follow the code flow through the simcall barrier */ simcall_HANDLER_execution_test(&SIMIX_process_self()->simcall, execution); - return simcall(SIMCALL_EXECUTION_TEST, execution); + return simcall(SIMCALL_EXECUTION_TEST, execution); } inline static void simcall_BODY_comm_send(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff, size_t src_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double timeout)