X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5e22c862d29ac2455672f2bc7f50bbcc9ade21c2..9b60e270c5fe98fb6c528164aa9c6e4e6045f7e0:/src/kernel/routing/NetPoint.cpp diff --git a/src/kernel/routing/NetPoint.cpp b/src/kernel/routing/NetPoint.cpp index e1b0510aee..6a23274eaf 100644 --- a/src/kernel/routing/NetPoint.cpp +++ b/src/kernel/routing/NetPoint.cpp @@ -13,17 +13,17 @@ namespace simgrid { namespace kernel { namespace routing { -simgrid::xbt::signal NetPoint::onCreation; +simgrid::xbt::signal NetPoint::on_creation; NetPoint::NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* netzone_p) : name_(name), component_type_(componentType), englobing_zone_(netzone_p) { if (netzone_p != nullptr) - id_ = netzone_p->addComponent(this); + id_ = netzone_p->add_component(this); else id_ = static_cast(-1); - simgrid::s4u::Engine::getInstance()->netpoint_register(this); - simgrid::kernel::routing::NetPoint::onCreation(this); + simgrid::s4u::Engine::get_instance()->netpoint_register(this); + simgrid::kernel::routing::NetPoint::on_creation(this); } } } @@ -35,5 +35,5 @@ NetPoint::NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* */ simgrid::kernel::routing::NetPoint* sg_netpoint_by_name_or_null(const char* name) { - return simgrid::s4u::Engine::getInstance()->getNetpointByNameOrNull(name); + return simgrid::s4u::Engine::get_instance()->netpoint_by_name_or_null(name); }