summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.h
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-09-10 17:21:51 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-09-10 17:21:51 -0400
commitdd13da3b90d71b94c8dc09942fee97f8513df348 (patch)
treed490b811932be34445f3d02331b14d4f1c5b909a /runtime/runtime.h
parentf76427a2bf80e4451e5e8d0c26b06aca65e4e2c4 (diff)
parentda4c496a55b73e2a768d3b1c6cee44b43144bcc8 (diff)
downloadsystemtap-steved-dd13da3b90d71b94c8dc09942fee97f8513df348.tar.gz
systemtap-steved-dd13da3b90d71b94c8dc09942fee97f8513df348.tar.xz
systemtap-steved-dd13da3b90d71b94c8dc09942fee97f8513df348.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
* 'master' of ssh://sources.redhat.com/git/systemtap: backtrace fix for i386 with neither frame pointers nor dwarf unwinding Add network security warning for the client/server. Check for dwarf_getelf (elfutils 0.126+). hangeLog entries for latest commits. Move stap-find-* script to client sub rpm. Rename _stp_module module_base output to dwarf_module_base and document. Remove unnecessary dependencies. Correct man page specs in systemtap.spec Create systemtap-client and systemtap-server sub rpms
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