X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/596ec6438ef689071e4b6a03821f2274f3bcc1b8..390ee57ed79bf7577c2bce6df6a25aba57ff476e:/src/surf/surf_c_bindings.cpp diff --git a/src/surf/surf_c_bindings.cpp b/src/surf/surf_c_bindings.cpp index 7ddcf93e63..d13f01080b 100644 --- a/src/surf/surf_c_bindings.cpp +++ b/src/surf/surf_c_bindings.cpp @@ -17,11 +17,6 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_kernel); * TOOLS * *********/ -static simgrid::surf::VirtualMachineImpl* get_casted_vm(sg_host_t host) -{ - return static_cast(host)->pimpl_vm_; -} - extern double NOW; void surf_presolve() @@ -218,34 +213,6 @@ int surf_host_file_move(sg_host_t host, surf_file_t fd, const char* fullpath){ return host->pimpl_->fileMove(fd, fullpath); } -void surf_vm_suspend(sg_host_t vm){ - get_casted_vm(vm)->suspend(); -} - -void surf_vm_resume(sg_host_t vm){ - get_casted_vm(vm)->resume(); -} - -void surf_vm_save(sg_host_t vm){ - get_casted_vm(vm)->save(); -} - -void surf_vm_restore(sg_host_t vm){ - get_casted_vm(vm)->restore(); -} - -void surf_vm_migrate(sg_host_t vm, sg_host_t ind_vm_ws_dest){ - get_casted_vm(vm)->migrate(ind_vm_ws_dest); -} - -sg_host_t surf_vm_get_pm(sg_host_t vm){ - return get_casted_vm(vm)->getPm(); -} - -void surf_vm_set_bound(sg_host_t vm, double bound){ - get_casted_vm(vm)->setBound(bound); -} - xbt_dict_t surf_storage_get_content(surf_resource_t resource){ return static_cast(surf_storage_resource_priv(resource))->getContent(); }