X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/611d822b02f836d7abe031cced6adc4281ef4356..25f81e17d9f23d3eaf9b6907eed3cab3b8cf3e6b:/src/instr/instr_paje_containers.cpp diff --git a/src/instr/instr_paje_containers.cpp b/src/instr/instr_paje_containers.cpp index 828ec38001..23f44b3899 100644 --- a/src/instr/instr_paje_containers.cpp +++ b/src/instr/instr_paje_containers.cpp @@ -150,17 +150,12 @@ void Container::logCreation() XBT_DEBUG("%s: event_type=%u, timestamp=%f", __func__, PAJE_CreateContainer, timestamp); - if (instr_fmt_type == instr_fmt_paje) { + if (trace_format == simgrid::instr::TraceFormat::Paje) { stream << std::fixed << std::setprecision(TRACE_precision()) << PAJE_CreateContainer << " "; - /* prevent 0.0000 in the trace - this was the behavior before the transition to c++ */ - if (timestamp < 1e-12) - stream << 0; - else - stream << timestamp; - stream << " " << id_ << " " << type_->get_id() << " " << father_->id_ << " \"" << name_ << "\""; + stream << timestamp << " " << id_ << " " << type_->get_id() << " " << father_->id_ << " \"" << name_ << "\""; XBT_DEBUG("Dump %s", stream.str().c_str()); fprintf(tracing_file, "%s\n", stream.str().c_str()); - } else if (instr_fmt_type == instr_fmt_TI) { + } else if (trace_format == simgrid::instr::TraceFormat::Ti) { // if we are in the mode with only one file static FILE* ti_unique_file = nullptr; @@ -194,16 +189,12 @@ void Container::logDestruction() XBT_DEBUG("%s: event_type=%u, timestamp=%f", __func__, PAJE_DestroyContainer, timestamp); - if (instr_fmt_type == instr_fmt_paje) { + if (trace_format == simgrid::instr::TraceFormat::Paje) { stream << std::fixed << std::setprecision(TRACE_precision()) << PAJE_DestroyContainer << " "; - /* prevent 0.0000 in the trace - this was the behavior before the transition to c++ */ - if (timestamp < 1e-12) - stream << 0 << " " << type_->get_id() << " " << id_; - else - stream << timestamp << " " << type_->get_id() << " " << id_; + stream << timestamp << " " << type_->get_id() << " " << id_; XBT_DEBUG("Dump %s", stream.str().c_str()); fprintf(tracing_file, "%s\n", stream.str().c_str()); - } else if (instr_fmt_type == instr_fmt_TI) { + } else if (trace_format == simgrid::instr::TraceFormat::Ti) { if (not xbt_cfg_get_boolean("tracing/smpi/format/ti-one-file") || tracing_files.size() == 1) { fclose(tracing_files.at(this)); }