X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1ebb1b66ad53385329ef17d8e6da280e6d924958..533b09bd161a7a8bef036a14bbcb8793286b9d9f:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index dd9b622781..e464ce2267 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)