Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
There is no need to use simix here.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 16 Oct 2019 20:06:46 +0000 (22:06 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 17 Oct 2019 10:02:34 +0000 (12:02 +0200)
src/xbt/backtrace.cpp

index a7c8585..74126b1 100644 (file)
@@ -5,11 +5,11 @@
 
 #include "src/internal_config.h"
 
-#include "simgrid/simix.h" /* SIMIX_process_self_get_name() */
 #include <xbt/backtrace.hpp>
 #include <xbt/log.h>
 #include <xbt/string.hpp>
 #include <xbt/sysdep.h>
+#include <xbt/virtu.h>
 
 #include <cstddef>
 #include <cstdlib>
@@ -147,7 +147,7 @@ void Backtrace::display() const
     fprintf(stderr, "(backtrace not set -- did you install Boost.Stacktrace?)\n");
     return;
   }
-  fprintf(stderr, "Backtrace (displayed in actor %s):\n", SIMIX_process_self_get_name());
+  fprintf(stderr, "Backtrace (displayed in actor %s):\n", xbt_procname());
   std::fprintf(stderr, "%s\n", backtrace.c_str());
 }