summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.h
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2008-09-11 12:07:38 +1000
committerddomingo <ddomingo@redhat.com>2008-09-11 12:07:38 +1000
commit936eeb672167eaec2e5d8e9d7cf7fe9e962efe58 (patch)
treef340b3f78479294491e76e6533c28160b3cc2ee1 /runtime/runtime.h
parent6f57b072898d1858e0af448169c759dd44efddca (diff)
parent223f5b6b6e2c945c442a5dde7e63e637237f575b (diff)
downloadsystemtap-steved-936eeb672167eaec2e5d8e9d7cf7fe9e962efe58.tar.gz
systemtap-steved-936eeb672167eaec2e5d8e9d7cf7fe9e962efe58.tar.xz
systemtap-steved-936eeb672167eaec2e5d8e9d7cf7fe9e962efe58.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r--runtime/runtime.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h
index fd0cac9e..cd3d0b11 100644
--- a/runtime/runtime.h
+++ b/runtime/runtime.h
@@ -68,13 +68,15 @@ static struct
#ifdef CONFIG_FRAME_POINTER
/* Just because frame pointers are available does not mean we can trust them. */
-#if defined (__i386__) || defined (__arm__)
+#ifndef STP_USE_DWARF_UNWINDER
#define STP_USE_FRAME_POINTER
#endif
#endif
-/* dwarf unwinder only tested so far on i386 and x86_64 */
-#if !defined(STP_USE_FRAME_BUFFER) && (defined(__i386__) || defined(__x86_64__))
+/* dwarf unwinder only tested so far on i386 and x86_64,
+ but globally disabled for now */
+#if 0
+// !defined(STP_USE_FRAME_BUFFER) && (defined(__i386__) || defined(__x86_64__))
#define STP_USE_DWARF_UNWINDER
#endif