X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..3ed98d31c172001583f905cfbabaab636651169c:/src/surf/HostImpl.cpp diff --git a/src/surf/HostImpl.cpp b/src/surf/HostImpl.cpp index 20a039421f..fc804315c0 100644 --- a/src/surf/HostImpl.cpp +++ b/src/surf/HostImpl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,7 +8,7 @@ #include -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_host, surf, "Logging specific to the SURF host module"); +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; @@ -113,7 +113,7 @@ std::vector HostImpl::get_disks() const void HostImpl::set_disks(const std::vector& disks, s4u::Host* host) { - disks_ = std::move(disks); + disks_ = disks; for (auto d : disks_) d->set_host(host); } @@ -135,21 +135,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