X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e30d391831c58e590aa83dce5f30f218cc3f53ce..0b348e806f86cd8c138b8485c8d41c041ccad610:/src/instr/instr_paje_containers.cpp diff --git a/src/instr/instr_paje_containers.cpp b/src/instr/instr_paje_containers.cpp index 23f44b3899..2b901348ea 100644 --- a/src/instr/instr_paje_containers.cpp +++ b/src/instr/instr_paje_containers.cpp @@ -35,7 +35,7 @@ container_t Container::getRoot() NetZoneContainer::NetZoneContainer(std::string name, unsigned int level, NetZoneContainer* father) : Container::Container(name, "", father) { - netpoint_ = simgrid::s4u::Engine::getInstance()->getNetpointByNameOrNull(name); + netpoint_ = simgrid::s4u::Engine::get_instance()->getNetpointByNameOrNull(name); xbt_assert(netpoint_, "Element '%s' not found", name.c_str()); if (father_) { type_ = father_->type_->getOrCreateContainerType(std::string("L") + std::to_string(level)); @@ -51,7 +51,7 @@ RouterContainer::RouterContainer(std::string name, Container* father) : Containe { xbt_assert(father, "Only the Root container has no father"); - netpoint_ = simgrid::s4u::Engine::getInstance()->getNetpointByNameOrNull(name); + netpoint_ = simgrid::s4u::Engine::get_instance()->getNetpointByNameOrNull(name); xbt_assert(netpoint_, "Element '%s' not found", name.c_str()); trivaNodeTypes.insert(type_->get_name()); @@ -164,7 +164,7 @@ void Container::logCreation() prefix = xbt_os_time(); } - if (not xbt_cfg_get_boolean("tracing/smpi/format/ti-one-file") || ti_unique_file == nullptr) { + if (not simgrid::config::get_value("tracing/smpi/format/ti-one-file") || ti_unique_file == nullptr) { std::string folder_name = TRACE_get_filename() + "_files"; std::string filename = folder_name + "/" + std::to_string(prefix) + "_" + name_ + ".txt"; #ifdef WIN32 @@ -195,7 +195,7 @@ void Container::logDestruction() XBT_DEBUG("Dump %s", stream.str().c_str()); fprintf(tracing_file, "%s\n", stream.str().c_str()); } else if (trace_format == simgrid::instr::TraceFormat::Ti) { - if (not xbt_cfg_get_boolean("tracing/smpi/format/ti-one-file") || tracing_files.size() == 1) { + if (not simgrid::config::get_value("tracing/smpi/format/ti-one-file") || tracing_files.size() == 1) { fclose(tracing_files.at(this)); } tracing_files.erase(this);