summaryrefslogtreecommitdiffstats
path: root/runtime/unwind.c
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-04-15 17:44:32 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-04-15 17:44:32 -0400
commitca1655b01e0f15289f5b8e7b760373c733cbdd83 (patch)
treee489df7957f98063dbb08af15a3b37535ee88881 /runtime/unwind.c
parent8558d3925ee2931b654a19f243bfa8b3be0bfc12 (diff)
downloadsystemtap-steved-ca1655b01e0f15289f5b8e7b760373c733cbdd83.tar.gz
systemtap-steved-ca1655b01e0f15289f5b8e7b760373c733cbdd83.tar.xz
systemtap-steved-ca1655b01e0f15289f5b8e7b760373c733cbdd83.zip
PR6410: unwinder-less architecture tolerance
Diffstat (limited to 'runtime/unwind.c')
-rw-r--r--runtime/unwind.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/unwind.c b/runtime/unwind.c
index f0010372..aa270cad 100644
--- a/runtime/unwind.c
+++ b/runtime/unwind.c
@@ -15,6 +15,8 @@
#include "unwind/unwind.h"
+#ifdef STP_USE_DWARF_UNWINDER
+
struct eh_frame_hdr_table_entry {
unsigned long start, fde;
};
@@ -957,3 +959,6 @@ done:
#undef CASES
#undef FRAME_REG
}
+
+
+#endif /* STP_USE_DWARF_UNWINDER */