X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e8f0399a8d83bfddeb5ca70bec5880eb26f420b5..e434b8fbade98e0fa09291a1dccfb9d25cebbbc7:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index ba60b6d8c3..6f96dc7cc9 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -39,11 +39,11 @@ inline static R simcall(e_smx_simcall_t call, T const&... t) return simgrid::simix::unmarshal(self->simcall.result_); } -inline static int simcall_BODY_execution_wait(simgrid::kernel::activity::ExecImpl* execution) +inline static int simcall_BODY_execution_wait(simgrid::kernel::activity::ExecImpl* execution, double timeout) { if (0) /* Go to that function to follow the code flow through the simcall barrier */ - simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution); - return simcall(SIMCALL_EXECUTION_WAIT, execution); + simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution, timeout); + return simcall(SIMCALL_EXECUTION_WAIT, execution, timeout); } inline static int simcall_BODY_execution_waitany_for(simgrid::kernel::activity::ExecImpl** execs, size_t count, double timeout) @@ -165,11 +165,18 @@ inline static int simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout return simcall(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout); } -inline static sg_size_t simcall_BODY_io_wait(simgrid::kernel::activity::IoImpl* io) +inline static sg_size_t simcall_BODY_io_wait(simgrid::kernel::activity::IoImpl* io, double timeout) { if (0) /* Go to that function to follow the code flow through the simcall barrier */ - simcall_HANDLER_io_wait(&SIMIX_process_self()->simcall, io); - return simcall(SIMCALL_IO_WAIT, io); + simcall_HANDLER_io_wait(&SIMIX_process_self()->simcall, io, timeout); + return simcall(SIMCALL_IO_WAIT, io, timeout); +} + +inline static bool simcall_BODY_io_test(simgrid::kernel::activity::IoImpl* io) +{ + if (0) /* Go to that function to follow the code flow through the simcall barrier */ + simcall_HANDLER_io_test(&SIMIX_process_self()->simcall, io); + return simcall(SIMCALL_IO_TEST, io); } inline static int simcall_BODY_mc_random(int min, int max)