Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use signals and callbacks to trace actors
[simgrid.git] / src / s4u / s4u_Netzone.cpp
index e62b0af..d805c8c 100644 (file)
@@ -111,7 +111,7 @@ void NetZone::add_route(kernel::routing::NetPoint* /*src*/, kernel::routing::Net
 
 sg_netzone_t sg_zone_get_root()
 {
-  return simgrid::s4u::Engine::getInstance()->getNetRoot();
+  return simgrid::s4u::Engine::get_instance()->getNetRoot();
 }
 
 const char* sg_zone_get_name(sg_netzone_t netzone)
@@ -121,7 +121,7 @@ const char* sg_zone_get_name(sg_netzone_t netzone)
 
 sg_netzone_t sg_zone_get_by_name(const char* name)
 {
-  return simgrid::s4u::Engine::getInstance()->getNetzoneByNameOrNull(name);
+  return simgrid::s4u::Engine::get_instance()->getNetzoneByNameOrNull(name);
 }
 
 void sg_zone_get_sons(sg_netzone_t netzone, xbt_dict_t whereto)