summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.h
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-09-10 17:18:41 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-09-10 17:18:41 -0400
commitda4c496a55b73e2a768d3b1c6cee44b43144bcc8 (patch)
treec072badf8d4161ca91883d0084548a95895dd0b7 /runtime/runtime.h
parentae8b5b85fe489b400022c339c907806fc6dc55ae (diff)
downloadsystemtap-steved-da4c496a55b73e2a768d3b1c6cee44b43144bcc8.tar.gz
systemtap-steved-da4c496a55b73e2a768d3b1c6cee44b43144bcc8.tar.xz
systemtap-steved-da4c496a55b73e2a768d3b1c6cee44b43144bcc8.zip
backtrace fix for i386 with neither frame pointers nor dwarf unwinding
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r--runtime/runtime.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h
index db793aa5..cd3d0b11 100644
--- a/runtime/runtime.h
+++ b/runtime/runtime.h
@@ -69,15 +69,13 @@ static struct
#ifdef CONFIG_FRAME_POINTER
/* Just because frame pointers are available does not mean we can trust them. */
#ifndef STP_USE_DWARF_UNWINDER
-#if defined (__i386__) || defined (__arm__)
#define STP_USE_FRAME_POINTER
#endif
#endif
-#endif
/* dwarf unwinder only tested so far on i386 and x86_64,
but globally disabled for now */
-#if 0
+#if 0
// !defined(STP_USE_FRAME_BUFFER) && (defined(__i386__) || defined(__x86_64__))
#define STP_USE_DWARF_UNWINDER
#endif