X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/aa99a28f4aa15a759609b66eae65501eccc1cf4a..431765cb8198579ac316fa0875b5c8988a501675:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index 486da232b7..c2c83cc915 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -83,13 +83,14 @@ inline static int simcall_BODY_process_sleep(double duration) { 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) + double* bytes_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); + if (0) + SIMIX_execution_parallel_start(name, host_nb, host_list, flops_amount, bytes_amount, rate, timeout); 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); + double*, double, double>(SIMCALL_EXECUTION_PARALLEL_START, name, host_nb, host_list, flops_amount, + bytes_amount, rate, timeout); } inline static void @@ -135,18 +136,6 @@ inline static void simcall_BODY_process_on_exit(smx_actor_t process, int_f_pvoid return simcall(SIMCALL_PROCESS_ON_EXIT, process, fun, data); } -inline static void simcall_BODY_process_auto_restart_set(smx_actor_t process, int auto_restart) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) SIMIX_process_auto_restart_set(process, auto_restart); - return simcall(SIMCALL_PROCESS_AUTO_RESTART_SET, process, auto_restart); - } - -inline static smx_actor_t simcall_BODY_process_restart(smx_actor_t process) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_process_restart(&SIMIX_process_self()->simcall, process); - return simcall(SIMCALL_PROCESS_RESTART, process); - } - inline static boost::intrusive_ptr simcall_BODY_comm_iprobe(smx_mailbox_t mbox, int type, simix_match_func_t match_fun, void* data) { @@ -224,12 +213,6 @@ inline static int simcall_BODY_comm_waitany(xbt_dynar_t comms, double timeout) { comms, count); } -inline static smx_mutex_t simcall_BODY_mutex_init() { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_mutex_init(&SIMIX_process_self()->simcall); - return simcall(SIMCALL_MUTEX_INIT); - } - inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex) { /* Go to that function to follow the code flow through the simcall barrier */ if (0) simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex); @@ -278,24 +261,6 @@ inline static void simcall_BODY_cond_broadcast(smx_cond_t cond) { return simcall(SIMCALL_COND_BROADCAST, cond); } -inline static smx_sem_t simcall_BODY_sem_init(unsigned int capacity) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) SIMIX_sem_init(capacity); - return simcall(SIMCALL_SEM_INIT, capacity); - } - -inline static void simcall_BODY_sem_release(smx_sem_t sem) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_sem_release(&SIMIX_process_self()->simcall, sem); - return simcall(SIMCALL_SEM_RELEASE, sem); - } - -inline static int simcall_BODY_sem_would_block(smx_sem_t sem) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_sem_would_block(&SIMIX_process_self()->simcall, sem); - return simcall(SIMCALL_SEM_WOULD_BLOCK, sem); - } - inline static void simcall_BODY_sem_acquire(smx_sem_t sem) { /* Go to that function to follow the code flow through the simcall barrier */ if (0) simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem); @@ -308,12 +273,6 @@ inline static void simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeou return simcall(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout); } -inline static int simcall_BODY_sem_get_capacity(smx_sem_t sem) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_sem_get_capacity(&SIMIX_process_self()->simcall, sem); - return simcall(SIMCALL_SEM_GET_CAPACITY, sem); - } - inline static sg_size_t simcall_BODY_file_read(surf_file_t fd, sg_size_t size) { /* Go to that function to follow the code flow through the simcall barrier */