X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eeff3b8f8915c9ed3d3eb588e3ab59ccb1df3221..b9d349f4e630752232d93f23b5cb3c33e02e0d05:/src/surf/HostImpl.cpp diff --git a/src/surf/HostImpl.cpp b/src/surf/HostImpl.cpp index ff03d144f8..d6547d5c81 100644 --- a/src/surf/HostImpl.cpp +++ b/src/surf/HostImpl.cpp @@ -10,8 +10,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(res_host, ker_resource, "Host resources agregate CPU, networking and I/O features"); -simgrid::surf::HostModel *surf_host_model = nullptr; - /************* * Callbacks *t *************/ @@ -135,21 +133,5 @@ void HostImpl::remove_disk(const std::string& disk_name) } } -std::vector HostImpl::get_attached_storages() -{ - std::vector storages; - for (auto const& s : storage_) - if (s.second->get_host() == piface_->get_cname()) - storages.push_back(s.second->get_iface()->get_cname()); - return storages; -} -std::unordered_map* HostImpl::get_mounted_storages() -{ - auto* mounts = new std::unordered_map(); - for (auto const& m : storage_) { - mounts->insert({m.first, m.second->get_iface()}); - } - return mounts; -} } // namespace surf } // namespace simgrid