summaryrefslogtreecommitdiff
path: root/lib/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/debug.c')
-rw-r--r--lib/debug.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/debug.c b/lib/debug.c
deleted file mode 100644
index 252e4dd7..00000000
--- a/lib/debug.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <zebra.h>
-#include "log.h"
-
-void
-debug_print_trace (int signal)
-{
-#ifdef HAVE_GLIBC_BACKTRACE
- void *array[10];
- size_t size;
- char **strings;
- size_t i;
-
- size = backtrace (array, 10);
- strings = backtrace_symbols (array, size);
-
- printf ("Obtained %zd stack frames.\n", size);
-
- for (i = 0; i < size; i++)
- printf ("%s\n", strings[i]);
-
- free (strings);
-#endif /* HAVE_GLIBC_BACKTRACE */
-
- exit(1);
-}