X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8ccebd8729f00d1125f343c9dce5b093f40f8cc7..63ebf4be4ca6a243a64c7ded8df9b96a9d28d3ff:/teshsuite/s4u/storage_client_server/storage_client_server.cpp diff --git a/teshsuite/s4u/storage_client_server/storage_client_server.cpp b/teshsuite/s4u/storage_client_server/storage_client_server.cpp index b70d087ee5..d02157f4a3 100644 --- a/teshsuite/s4u/storage_client_server/storage_client_server.cpp +++ b/teshsuite/s4u/storage_client_server/storage_client_server.cpp @@ -91,7 +91,7 @@ static void get_set_storage_data(const std::string& storage_name) static void dump_platform_storages() { - std::vector storages = simgrid::s4u::Engine::getInstance()->getAllStorages(); + std::vector storages = simgrid::s4u::Engine::getInstance()->get_all_storages(); for (auto const& s : storages) { XBT_INFO("Storage %s is attached to %s", s->get_cname(), s->getHost()->get_cname()); @@ -164,6 +164,6 @@ int main(int argc, char* argv[]) e.run(); - XBT_INFO("Simulated time: %g", e.getClock()); + XBT_INFO("Simulated time: %g", e.get_clock()); return 0; }