X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ff498d2432d650dc50282b04e3bd175a588eef8c..91a00effad306a7aeba5982ebd079160025d9a4f:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index 4234bb929c..b86e34a8db 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) @@ -113,11 +113,11 @@ inline static void simcall_BODY_comm_wait(simgrid::kernel::activity::CommImpl* c return simcall(SIMCALL_COMM_WAIT, comm, timeout); } -inline static int simcall_BODY_comm_test(simgrid::kernel::activity::CommImpl* comm) +inline static bool simcall_BODY_comm_test(simgrid::kernel::activity::CommImpl* comm) { if (0) /* Go to that function to follow the code flow through the simcall barrier */ simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm); - return simcall(SIMCALL_COMM_TEST, comm); + return simcall(SIMCALL_COMM_TEST, comm); } inline static int simcall_BODY_comm_testany(simgrid::kernel::activity::CommImpl** comms, size_t count)