From 27de84142bab45db6e6414a05c90c3362ebd42ca Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 10 Dec 2005 20:17:49 +0000 Subject: [PATCH] Empty implementations of PPC stack trace functions to make the build system happy. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15476 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../debug/arch/ppc/arch_debug_support.cpp | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/kits/debug/arch/ppc/arch_debug_support.cpp diff --git a/src/kits/debug/arch/ppc/arch_debug_support.cpp b/src/kits/debug/arch/ppc/arch_debug_support.cpp new file mode 100644 index 0000000000..cf880f5563 --- /dev/null +++ b/src/kits/debug/arch/ppc/arch_debug_support.cpp @@ -0,0 +1,27 @@ +/* + * Copyright 2005, Ingo Weinhold, bonefish@users.sf.net. + * Distributed under the terms of the MIT License. + */ + + +#include + +#include "arch_debug_support.h" + + +status_t +arch_debug_get_instruction_pointer(debug_context *context, thread_id thread, + void **ip, void **stackFrameAddress) +{ + // TODO: Implement! + return B_ERROR; +} + + +status_t +arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, + debug_stack_frame_info *stackFrameInfo) +{ + // TODO: Implement! + return B_ERROR; +}