Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Show the user-level call in MC backtraces
[simgrid.git] / src / instr / instr_smpi.hpp
index 309dd16..d063328 100644 (file)
@@ -37,7 +37,7 @@ public:
            std::to_string(linenumber);
   }
 
-  std::string get_call_location() const { return filename + "::" + func_call + "::" + std::to_string(linenumber); }
+  std::string get_call_location() const { return filename + ":" + std::to_string(linenumber) + ":" + func_call + "()"; }
 };
 
 #endif