X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/32df9acdb9c57513bf704fab767117eaccdcecc9..8f4c00936fdabbd005cbf15ca132ceb248f72dcd:/src/s4u/s4u_host.cpp diff --git a/src/s4u/s4u_host.cpp b/src/s4u/s4u_host.cpp index 29d104a225..dcfa890cd1 100644 --- a/src/s4u/s4u_host.cpp +++ b/src/s4u/s4u_host.cpp @@ -8,7 +8,7 @@ #include #include -#include +#include #include "simgrid/s4u/engine.hpp" #include "simgrid/s4u/host.hpp" @@ -24,7 +24,7 @@ XBT_LOG_EXTERNAL_CATEGORY(surf_route); -std::unordered_map host_list; // FIXME: move it to Engine +std::map host_list; // FIXME: move it to Engine int USER_HOST_LEVEL = -1; @@ -257,7 +257,7 @@ xbt_dict_t Host::mountedStoragesAsDict() * \brief Returns the list of storages attached to an host. * \return a dict containing all storages attached to the host */ -xbt_dynar_t Host::attachedStorages() +std::vector Host::attachedStorages() { return simgrid::simix::kernelImmediate([this] { return this->pimpl_->getAttachedStorageList();