X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bd7708d5f81722d60f78bcf7dd0481d6a8e58a92..322392d9d7d8ff2e78b6ae12998ca8693fa09b38:/src/s4u/s4u_host.cpp diff --git a/src/s4u/s4u_host.cpp b/src/s4u/s4u_host.cpp index 66a13a97a0..ce44cd7cdf 100644 --- a/src/s4u/s4u_host.cpp +++ b/src/s4u/s4u_host.cpp @@ -20,7 +20,7 @@ #include "simgrid/s4u/host.hpp" #include "simgrid/s4u/storage.hpp" -xbt_dict_t host_list = nullptr; // FIXME: make it a static field of Host +xbt_dict_t host_list = nullptr; // FIXME: move it to Engine int MSG_HOST_LEVEL = -1; int USER_HOST_LEVEL = -1; @@ -40,6 +40,7 @@ simgrid::xbt::signal Host::onStateChange; Host::Host(const char* name) : name_(name) { + xbt_dict_set(host_list, name, this, nullptr); } Host::~Host() { @@ -68,10 +69,9 @@ Host* Host::by_name_or_null(const char* name) Host* Host::by_name_or_create(const char* name) { Host* host = by_name_or_null(name); - if (host == nullptr) { + if (host == nullptr) host = new Host(name); - xbt_dict_set(host_list, name, host, nullptr); - } + return host; }