Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
this is definitely a backtrace function
authorMartin Quinson <martin.quinson@loria.fr>
Mon, 31 Oct 2016 22:31:32 +0000 (23:31 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Mon, 31 Oct 2016 22:31:32 +0000 (23:31 +0100)
src/xbt/backtrace.cpp
src/xbt/ex.cpp

index 8831610..fa82b4d 100644 (file)
@@ -13,6 +13,7 @@
 #include <cxxabi.h>
 #endif
 
 #include <cxxabi.h>
 #endif
 
+#include "simgrid/simix.h" /* SIMIX_process_self_get_name() */
 #include <xbt/backtrace.h>
 #include <xbt/backtrace.hpp>
 #include <xbt/log.h>
 #include <xbt/backtrace.h>
 #include <xbt/backtrace.hpp>
 #include <xbt/log.h>
@@ -26,6 +27,22 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_backtrace, xbt, "Backtrace");
 
 }
 
 
 }
 
+void xbt_backtrace_display(xbt_backtrace_location_t* loc, std::size_t count)
+{
+#ifdef HAVE_BACKTRACE
+  std::vector<std::string> backtrace = simgrid::xbt::resolveBacktrace(loc, count);
+  if (backtrace.empty()) {
+    fprintf(stderr, "(backtrace not set)\n");
+    return;
+  }
+  fprintf(stderr, "Backtrace (displayed in process %s):\n", SIMIX_process_self_get_name());
+  for (std::string const& s : backtrace)
+    fprintf(stderr, "---> %s\n", s.c_str());
+#else
+  XBT_ERROR("Cannot display backtrace when compiled without libunwind.");
+#endif
+}
+
 /** @brief show the backtrace of the current point (lovely while debugging) */
 void xbt_backtrace_display_current()
 {
 /** @brief show the backtrace of the current point (lovely while debugging) */
 void xbt_backtrace_display_current()
 {
index 0291f4c..da1dc69 100644 (file)
 #include "src/xbt/ex_interface.h"
 #include "simgrid/sg_config.h"  /* Configuration mechanism of SimGrid */
 
 #include "src/xbt/ex_interface.h"
 #include "simgrid/sg_config.h"  /* Configuration mechanism of SimGrid */
 
-#include "simgrid/simix.h" /* SIMIX_process_self_get_name() */
-
-
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_ex, xbt, "Exception mechanism");
 
 xbt_ex::~xbt_ex() {}
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_ex, xbt, "Exception mechanism");
 
 xbt_ex::~xbt_ex() {}
 
-/* Change raw libc symbols to file names and line numbers */
-void xbt_setup_backtrace(xbt_backtrace_location_t** loc, std::size_t count,
-  char** res);
-
-void xbt_backtrace_display(xbt_backtrace_location_t* loc, std::size_t count)
-{
-#ifdef HAVE_BACKTRACE
-  std::vector<std::string> backtrace =
-    simgrid::xbt::resolveBacktrace(loc, count);
-  if (backtrace.empty()) {
-    fprintf(stderr, "(backtrace not set)\n");
-    return;
-  }
-  fprintf(stderr, "Backtrace (displayed in process %s):\n", SIMIX_process_self_get_name());
-  for (std::string const& s : backtrace)
-    fprintf(stderr, "---> %s\n", s.c_str());
-#else
-  XBT_ERROR("No backtrace on this arch");
-#endif
-}
-
 void _xbt_throw(
   char* message, xbt_errcat_t errcat, int value, 
   const char* file, int line, const char* func)
 void _xbt_throw(
   char* message, xbt_errcat_t errcat, int value, 
   const char* file, int line, const char* func)