X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d1a8a4e291642999663c8cff03158c1041ff4916..7f7ba67e52224437975f8100739764702dd059d9:/src/s4u/s4u_host.cpp diff --git a/src/s4u/s4u_host.cpp b/src/s4u/s4u_host.cpp index 55402984d9..892337cd67 100644 --- a/src/s4u/s4u_host.cpp +++ b/src/s4u/s4u_host.cpp @@ -11,7 +11,7 @@ #include #include "simgrid/simix.hpp" -#include "src/surf/HostImplem.hpp" +#include "src/surf/HostImpl.hpp" #include "xbt/log.h" #include "src/msg/msg_private.h" #include "src/simix/smx_process_private.h" @@ -22,7 +22,6 @@ int MSG_HOST_LEVEL; int SIMIX_HOST_LEVEL; -int ROUTING_HOST_LEVEL; int USER_HOST_LEVEL; namespace simgrid { @@ -112,7 +111,7 @@ boost::unordered_map const& Host::mountedStorages() { /** Get the properties assigned to a host */ xbt_dict_t Host::properties() { return simgrid::simix::kernel([&] { - simgrid::surf::HostImplem* surf_host = this->extension(); + simgrid::surf::HostImpl* surf_host = this->extension(); return surf_host->getProperties(); }); } @@ -166,14 +165,14 @@ int Host::pstate() void Host::parameters(vm_params_t params) { simgrid::simix::kernel([&]() { - this->extension()->getParams(params); + this->extension()->getParams(params); }); } void Host::setParameters(vm_params_t params) { simgrid::simix::kernel([&]() { - this->extension()->setParams(params); + this->extension()->setParams(params); }); } @@ -185,7 +184,7 @@ void Host::setParameters(vm_params_t params) xbt_dict_t Host::mountedStoragesAsDict() { return simgrid::simix::kernel([&] { - return this->extension()->getMountedStorageList(); + return this->extension()->getMountedStorageList(); }); } @@ -197,7 +196,7 @@ xbt_dict_t Host::mountedStoragesAsDict() xbt_dynar_t Host::attachedStorages() { return simgrid::simix::kernel([&] { - return this->extension()->getAttachedStorageList(); + return this->extension()->getAttachedStorageList(); }); }