summaryrefslogtreecommitdiffstats
path: root/runtime/stack.c
diff options
context:
space:
mode:
authorAnton Vorontsov <avorontsov@ru.mvista.com>2009-11-28 01:33:42 +0300
committerFrank Ch. Eigler <fche@elastic.org>2009-12-01 11:57:32 -0500
commit51280c12d044b671b16ce59396658ac5a0f24650 (patch)
tree27c8036e3078b0e5ae9e09b05b1f01bad3e5876c /runtime/stack.c
parentf5fd3c39dcec944feb8aa91808a8cb8d94dd1e04 (diff)
downloadsystemtap-steved-51280c12d044b671b16ce59396658ac5a0f24650.tar.gz
systemtap-steved-51280c12d044b671b16ce59396658ac5a0f24650.tar.xz
systemtap-steved-51280c12d044b671b16ce59396658ac5a0f24650.zip
stack-ppc: Adjust for ppc32
Get rid of magic numbers, use appropriate defines from ptrace.h. From now on stack-ppc.c should be suitable for ppc32. Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Diffstat (limited to 'runtime/stack.c')
-rw-r--r--runtime/stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stack.c b/runtime/stack.c
index ae899950..25dbdbbd 100644
--- a/runtime/stack.c
+++ b/runtime/stack.c
@@ -40,7 +40,7 @@ static void _stp_stack_print_fallback(unsigned long, int, int);
#include "stack-ia64.c"
#elif defined (__i386__)
#include "stack-i386.c"
-#elif defined (__powerpc64__)
+#elif defined (__powerpc__)
#include "stack-ppc.c"
#elif defined (__arm__)
#include "stack-arm.c"