X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5de8fe9ad7bfa1bee9e28dd030f6c57ea529ad20..b98b530ed10d60d9c350bf4919896a0c50b649f3:/src/simix/popping_bodies.cpp?ds=sidebyside diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index 01267968ef..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); @@ -93,35 +87,6 @@ inline static int simcall_BODY_process_sleep(double duration) { bytes_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); - } - inline static int simcall_BODY_execution_wait(boost::intrusive_ptr execution) { /* Go to that function to follow the code flow through the simcall barrier */ @@ -225,6 +190,12 @@ inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex) { return simcall(SIMCALL_MUTEX_TRYLOCK, mutex); } +inline static void simcall_BODY_mutex_unlock(smx_mutex_t mutex) { + /* Go to that function to follow the code flow through the simcall barrier */ + if (0) simcall_HANDLER_mutex_unlock(&SIMIX_process_self()->simcall, mutex); + return simcall(SIMCALL_MUTEX_UNLOCK, mutex); + } + inline static smx_cond_t simcall_BODY_cond_init() { /* Go to that function to follow the code flow through the simcall barrier */ if (0) SIMIX_cond_init();