X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/390c4ee50cea7f1cb52ffc4bd7435a7ad4e9cc75..64578ee8e932a2a7e292514c0912f50fe4299220:/src/instr/instr_paje_events.cpp diff --git a/src/instr/instr_paje_events.cpp b/src/instr/instr_paje_events.cpp index 22faeb5d1a..6373f40d06 100644 --- a/src/instr/instr_paje_events.cpp +++ b/src/instr/instr_paje_events.cpp @@ -19,7 +19,7 @@ PajeEvent::PajeEvent(Container* container, Type* type, double timestamp, e_event : container_(container), type_(type), timestamp_(timestamp), eventType_(eventType) { XBT_DEBUG("%s: event_type=%u, timestamp=%.*f", __func__, eventType_, TRACE_precision(), timestamp_); - if (instr_fmt_type == instr_fmt_paje) { + if (trace_format == simgrid::instr::TraceFormat::Paje) { stream_ << std::fixed << std::setprecision(TRACE_precision()); stream_ << eventType_ << " " << timestamp_ << " " << type_->get_id() << " " << container_->get_id(); } @@ -30,7 +30,7 @@ StateEvent::StateEvent(Container* container, Type* type, e_event_type event_type : PajeEvent::PajeEvent(container, type, SIMIX_get_clock(), event_type), value(value), extra_(extra) { #if HAVE_SMPI - if (xbt_cfg_get_boolean("smpi/trace-call-location")) { + if (simgrid::config::get_value("smpi/trace-call-location")) { smpi_trace_call_location_t* loc = smpi_trace_get_call_location(); filename = loc->filename; linenumber = loc->linenumber; @@ -40,7 +40,7 @@ StateEvent::StateEvent(Container* container, Type* type, e_event_type event_type void NewEvent::print() { - if (instr_fmt_type != instr_fmt_paje) + if (trace_format != simgrid::instr::TraceFormat::Paje) return; stream_ << " " << value->getId(); @@ -51,7 +51,7 @@ void NewEvent::print() void LinkEvent::print() { - if (instr_fmt_type != instr_fmt_paje) + if (trace_format != simgrid::instr::TraceFormat::Paje) return; stream_ << " " << value_ << " " << endpoint_->get_id() << " " << key_; @@ -65,7 +65,7 @@ void LinkEvent::print() void VariableEvent::print() { - if (instr_fmt_type != instr_fmt_paje) + if (trace_format != simgrid::instr::TraceFormat::Paje) return; stream_ << " " << value; @@ -76,7 +76,7 @@ void VariableEvent::print() void StateEvent::print() { - if (instr_fmt_type == instr_fmt_paje) { + if (trace_format == simgrid::instr::TraceFormat::Paje) { if (value != nullptr) // PAJE_PopState Event does not need to have a value stream_ << " " << value->getId(); @@ -85,13 +85,13 @@ void StateEvent::print() stream_ << " " << ((extra_ != nullptr) ? extra_->display_size() : 0); #if HAVE_SMPI - if (xbt_cfg_get_boolean("smpi/trace-call-location")) { + if (simgrid::config::get_value("smpi/trace-call-location")) { stream_ << " \"" << filename << "\" " << linenumber; } #endif 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 (extra_ == nullptr) return;