X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dc1369e2055686dde3d178efb2001dbad8972d54..8ba862f74d468ea353e79d4d8db17028689ab86f:/src/kernel/routing/NetZoneImpl.cpp diff --git a/src/kernel/routing/NetZoneImpl.cpp b/src/kernel/routing/NetZoneImpl.cpp index 670720c3cf..1fa94750af 100644 --- a/src/kernel/routing/NetZoneImpl.cpp +++ b/src/kernel/routing/NetZoneImpl.cpp @@ -92,7 +92,7 @@ int NetZoneImpl::get_host_count() return count; } -simgrid::s4u::Host* NetZoneImpl::create_host(const char* name, const std::vector& speed_per_pstate, +simgrid::s4u::Host* NetZoneImpl::create_host(const std::string& name, const std::vector& speed_per_pstate, int coreAmount, const std::map* props) { simgrid::s4u::Host* res = new simgrid::s4u::Host(name); @@ -100,7 +100,7 @@ simgrid::s4u::Host* NetZoneImpl::create_host(const char* name, const std::vector if (hierarchy_ == RoutingMode::unset) hierarchy_ = RoutingMode::base; - res->pimpl_netpoint = new NetPoint(name, NetPoint::Type::Host, this); + res->set_netpoint(new NetPoint(name, NetPoint::Type::Host, this)); surf_cpu_model_pm->create_cpu(res, speed_per_pstate, coreAmount);