X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b7bae6a27325376248620283dafc43915142b254..d71293633ab72fc082a6d5f7d9ca2f1cbf4b99dc:/src/s4u/s4u_engine.cpp diff --git a/src/s4u/s4u_engine.cpp b/src/s4u/s4u_engine.cpp index 50d287e334..783ed43c4a 100644 --- a/src/s4u/s4u_engine.cpp +++ b/src/s4u/s4u_engine.cpp @@ -32,11 +32,11 @@ Engine *Engine::instance_ = nullptr; /* That singleton is awful, but I don't see Engine::Engine(int *argc, char **argv) { xbt_assert(s4u::Engine::instance_ == nullptr, "It is currently forbidden to create more than one instance of s4u::Engine"); - s4u::Engine::instance_ = this; - pimpl = new kernel::EngineImpl(); - TRACE_global_init(); SIMIX_global_init(argc, argv); + + pimpl = new kernel::EngineImpl(); + s4u::Engine::instance_ = this; } Engine::~Engine() @@ -54,6 +54,7 @@ Engine* Engine::getInstance() void Engine::shutdown() { delete s4u::Engine::instance_; + s4u::Engine::instance_ = nullptr; } double Engine::getClock() @@ -88,7 +89,7 @@ size_t Engine::getHostCount() /** @brief Fills the passed list with all hosts found in the platform */ void Engine::getHostList(std::vector* list) { - for (auto kv : host_list) + for (auto const& kv : host_list) list->push_back(kv.second); } @@ -110,7 +111,7 @@ static s4u::NetZone* netzoneByNameRecursive(s4u::NetZone* current, const char* n if (not strcmp(current->getCname(), name)) return current; - for (auto elem : *(current->getChildren())) { + for (auto const& elem : *(current->getChildren())) { simgrid::s4u::NetZone* tmp = netzoneByNameRecursive(elem, name); if (tmp != nullptr) { return tmp; @@ -135,7 +136,7 @@ simgrid::kernel::routing::NetPoint* Engine::getNetpointByNameOrNull(std::string /** @brief Fill the provided vector with all existing netpoints */ void Engine::getNetpointList(std::vector* list) { - for (auto kv : pimpl->netpoints_) + for (auto const& kv : pimpl->netpoints_) list->push_back(kv.second); } /** @brief Register a new netpoint to the system */