X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4752c649dca82264c6f54abbddf066fc6ab4f341..da79d68ac67b62a07a3df69b8f1371874714ba90:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index 3d8785c61d..4f3e9a7ef1 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -36,12 +36,6 @@ inline static R simcall(e_smx_simcall_t call, T const&... t) return simgrid::simix::unmarshal(self->simcall.result); } -inline static void simcall_BODY_process_kill(smx_actor_t process) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_process_kill(&SIMIX_process_self()->simcall, process); - return simcall(SIMCALL_PROCESS_KILL, process); - } - inline static void simcall_BODY_process_killall(int reset_pid) { /* Go to that function to follow the code flow through the simcall barrier */ if (0) simcall_HANDLER_process_killall(&SIMIX_process_self()->simcall, reset_pid); @@ -83,42 +77,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); - } - - inline static void - simcall_BODY_execution_cancel(boost::intrusive_ptr execution) - { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) SIMIX_execution_cancel(execution); - return simcall>(SIMCALL_EXECUTION_CANCEL, - execution); - } - - inline static void - simcall_BODY_execution_set_priority(boost::intrusive_ptr execution, - double priority) - { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) SIMIX_execution_set_priority(execution, priority); - return simcall, double>( - SIMCALL_EXECUTION_SET_PRIORITY, execution, priority); - } - - inline static void - simcall_BODY_execution_set_bound(boost::intrusive_ptr execution, - double bound) - { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) SIMIX_execution_set_bound(execution, bound); - return simcall, double>( - SIMCALL_EXECUTION_SET_BOUND, execution, bound); + double*, double, double>(SIMCALL_EXECUTION_PARALLEL_START, name, host_nb, host_list, flops_amount, + bytes_amount, rate, timeout); } inline static int simcall_BODY_execution_wait(boost::intrusive_ptr execution) @@ -135,18 +101,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 +178,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 +226,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,32 +238,20 @@ 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, sg_host_t host) + 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 */ - if (0) simcall_HANDLER_file_read(&SIMIX_process_self()->simcall, fd, size, host); - return simcall(SIMCALL_FILE_READ, fd, size, host); - } - - inline static sg_size_t simcall_BODY_file_write(surf_file_t fd, sg_size_t size, sg_host_t host) - { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_file_write(&SIMIX_process_self()->simcall, fd, size, host); - return simcall(SIMCALL_FILE_WRITE, fd, size, host); + if (0) + simcall_HANDLER_file_read(&SIMIX_process_self()->simcall, fd, size); + return simcall(SIMCALL_FILE_READ, fd, size); } - inline static surf_file_t simcall_BODY_file_open(const char* mount, const char* path, sg_storage_t st) + inline static sg_size_t simcall_BODY_file_write(surf_file_t fd, sg_size_t size) { /* Go to that function to follow the code flow through the simcall barrier */ if (0) - simcall_HANDLER_file_open(&SIMIX_process_self()->simcall, mount, path, st); - return simcall(SIMCALL_FILE_OPEN, mount, path, st); + simcall_HANDLER_file_write(&SIMIX_process_self()->simcall, fd, size); + return simcall(SIMCALL_FILE_WRITE, fd, size); } inline static int simcall_BODY_mc_random(int min, int max) {