X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1bd1bbd35034c2e93a030a676dc244ad2cf74c70..cc4ca208c5e056ac569cd07e08f09a416f3606fe:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index dd9b622781..f616cf57b7 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -71,11 +71,13 @@ inline static int simcall_BODY_process_sleep(double duration) return simcall(SIMCALL_PROCESS_SLEEP, duration); } -inline static boost::intrusive_ptr simcall_BODY_execution_start(const char* name, double flops_amount, double priority, double bound) +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); - return simcall, const char*, double, double, double>(SIMCALL_EXECUTION_START, name, flops_amount, priority, bound); + simcall_HANDLER_execution_start(&SIMIX_process_self()->simcall, 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); } inline static boost::intrusive_ptr simcall_BODY_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount, double* bytes_amount, double rate, double timeout) @@ -92,6 +94,13 @@ inline static int simcall_BODY_execution_wait(boost::intrusive_ptr>(SIMCALL_EXECUTION_WAIT, execution); } +inline static int simcall_BODY_execution_test(boost::intrusive_ptr 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); +} + inline static void simcall_BODY_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void* data) { if (0) /* Go to that function to follow the code flow through the simcall barrier */