Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not use deprecated function in our examples/tests
[simgrid.git] / examples / s4u / platform-properties / s4u-platform-properties.cpp
index 307a941..f2a948d 100644 (file)
@@ -106,10 +106,9 @@ int main(int argc, char* argv[])
   size_t totalHosts = sg_host_count();
 
   XBT_INFO("There are %zu hosts in the environment", totalHosts);
-  simgrid::s4u::Host** hosts = sg_host_list();
-  for (unsigned int i = 0; i < totalHosts; i++)
+  std::vector<simgrid::s4u::Host*> hosts = e.getAllHosts();
+  for (unsigned int i = 0; i < hosts.size(); i++)
     XBT_INFO("Host '%s' runs at %.0f flops/s", hosts[i]->getCname(), hosts[i]->getSpeed());
-  xbt_free(hosts);
 
   e.loadDeployment(argv[2]);
   e.run();