X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6a6935148284f51d20bceed365ed0edea8b5a70e..a56afec84c545bff8857ec1ebc33a0db038aad37:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index 02f679ab76..79a6d320b1 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -90,22 +90,22 @@ inline static int simcall_BODY_process_sleep(double duration) { return simcall(SIMCALL_PROCESS_SLEEP, duration); } - inline static boost::intrusive_ptr + inline static boost::intrusive_ptr simcall_BODY_execution_start(const char* name, double flops_amount, double priority, double bound) { /* Go to that function to follow the code flow through the simcall barrier */ if (0) simcall_HANDLER_execution_start(&SIMIX_process_self()->simcall, name, flops_amount, priority, bound); - return simcall, const char*, double, double, double>( + return simcall, const char*, double, double, double>( SIMCALL_EXECUTION_START, name, flops_amount, priority, bound); } - inline static boost::intrusive_ptr + 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 amount, double rate, double timeout) { /* Go to that function to follow the code flow through the simcall barrier */ if (0) SIMIX_execution_parallel_start(name, host_nb, host_list, flops_amount, bytes_amount, amount, rate, timeout); - return simcall, const char*, int, sg_host_t*, double*, + return simcall, const char*, int, sg_host_t*, double*, double*, double, double, double>(SIMCALL_EXECUTION_PARALLEL_START, name, host_nb, host_list, flops_amount, bytes_amount, amount, rate, timeout); } @@ -365,19 +365,22 @@ inline static int simcall_BODY_file_unlink(smx_file_t fd, sg_host_t host) { inline static sg_size_t simcall_BODY_file_get_size(smx_file_t fd) { /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_file_get_size(&SIMIX_process_self()->simcall, fd); + if (0) + SIMIX_file_get_size(fd); return simcall(SIMCALL_FILE_GET_SIZE, fd); } inline static sg_size_t simcall_BODY_file_tell(smx_file_t fd) { /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_file_tell(&SIMIX_process_self()->simcall, fd); + if (0) + SIMIX_file_tell(fd); return simcall(SIMCALL_FILE_TELL, fd); } inline static int simcall_BODY_file_seek(smx_file_t fd, sg_offset_t offset, int origin) { /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_file_seek(&SIMIX_process_self()->simcall, fd, offset, origin); + if (0) + SIMIX_file_seek(fd, offset, origin); return simcall(SIMCALL_FILE_SEEK, fd, offset, origin); }