Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to compile when SMPI is compiled out
[simgrid.git] / src / instr / instr_paje_events.cpp
index 2a6ef0c..49c8d77 100644 (file)
@@ -61,6 +61,9 @@ StateEvent::StateEvent(Container* container, Type* type, e_event_type event_type
     filename                        = loc->filename;
     linenumber                      = loc->linenumber;
   }
+#else
+  filename   = "(null)";
+  linenumber = -1;
 #endif
 
   XBT_DEBUG("%s: event_type=%u, timestamp=%f", __FUNCTION__, eventType_, timestamp_);
@@ -137,7 +140,7 @@ void StateEvent::print()
       stream << " " << value->getId();
 
     if (TRACE_display_sizes())
-      stream << " " << (extra_ != nullptr) ? extra_->display_size() : 0;
+      stream << " " << ((extra_ != nullptr) ? extra_->display_size() : 0);
 
 #if HAVE_SMPI
     if (xbt_cfg_get_boolean("smpi/trace-call-location")) {
@@ -156,7 +159,8 @@ void StateEvent::print()
     if (getContainer()->getName().find("rank-") != 0)
       stream << getContainer()->getName() << " " << extra_->print();
     else
-      stream << getContainer()->getName().erase(0, 5) << " " << extra_->print();
+      /* Subtract -1 because this is the process id and we transform it to the rank id */
+      stream << stoi(getContainer()->getName().erase(0, 5)) - 1 << " " << extra_->print();
 
     fprintf(tracing_files.at(getContainer()), "%s\n", stream.str().c_str());
   } else {