X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bd02d8d308feab888032539a30702bf2fb4b445f..a3f6c5e832f9966433370562ef59fc4670038c94:/src/simix/popping_bodies.cpp?ds=sidebyside diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index bf3c72c124..de6f79485d 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -43,7 +43,8 @@ inline static void simcall_BODY_vm_suspend(sg_host_t ind_vm) { inline static void simcall_BODY_vm_resume(sg_host_t ind_vm) { /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_vm_resume(&SIMIX_process_self()->simcall, ind_vm); + if (0) + SIMIX_vm_resume(ind_vm); return simcall(SIMCALL_VM_RESUME, ind_vm); } @@ -61,7 +62,8 @@ inline static void simcall_BODY_vm_save(sg_host_t ind_vm) { inline static void simcall_BODY_vm_restore(sg_host_t ind_vm) { /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_vm_restore(&SIMIX_process_self()->simcall, ind_vm); + if (0) + SIMIX_vm_restore(ind_vm); return simcall(SIMCALL_VM_RESTORE, ind_vm); } @@ -91,7 +93,8 @@ inline static void simcall_BODY_process_suspend(smx_actor_t process) { inline static void simcall_BODY_process_resume(smx_actor_t process) { /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_process_resume(&SIMIX_process_self()->simcall, process); + if (0) + SIMIX_process_resume(process); return simcall(SIMCALL_PROCESS_RESUME, process); }