Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add Doxygen documentation for mallocators
[simgrid.git] / src / xbt / ex.c
index 598fbf9..48ab1de 100644 (file)
@@ -72,7 +72,11 @@ void xbt_ex_setup_backtrace(xbt_ex_t *e)  {
 
   /* size (in char) of pointers on this arch */
   int addr_len=0;
-  
+
+  /* Some arches only have stubs of backtrace, no implementation (hppa comes to mind) */
+  if (!e->used)
+     return;
+   
   /* build the commandline */
   curr += sprintf(curr,"%s -f -e %s ",ADDR2LINE,xbt_binary_name);
   for (i=0; i<e->used;i++) {
@@ -151,7 +155,7 @@ void xbt_ex_setup_backtrace(xbt_ex_t *e)  {
       free(maps_name);
 
       if (!found) {
-       WARN0("Problem while reading the maps file");
+       VERB0("Problem while reading the maps file. Following backtrace will be mangled.");
        e->bt_strings[i] = bprintf("**   In ?? (%s)", backtrace[i]);
        continue;
       }