From 79a34d6fc6969dea0ed5a2805dfd589ba7b7ea31 Mon Sep 17 00:00:00 2001 From: "Ithamar R. Adema" Date: Thu, 22 Nov 2012 15:45:38 +0100 Subject: [PATCH] ARM/debug: add ARM stubs --- .../debug/arch/arm/arch_debug_support.cpp | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/kits/debug/arch/arm/arch_debug_support.cpp diff --git a/src/kits/debug/arch/arm/arch_debug_support.cpp b/src/kits/debug/arch/arm/arch_debug_support.cpp new file mode 100644 index 0000000000..ee287bb6e4 --- /dev/null +++ b/src/kits/debug/arch/arm/arch_debug_support.cpp @@ -0,0 +1,27 @@ +/* + * Copyright 2012, Haiku, Inc. + * Distributed under the terms of the MIT License. + * + * Authors: + * Ithamar R. Adema + */ + + +#include + +#include "arch_debug_support.h" + +status_t +arch_debug_get_instruction_pointer(debug_context *context, thread_id thread, + void **ip, void **stackFrameAddress) +{ + return B_ERROR; +} + + +status_t +arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, + debug_stack_frame_info *stackFrameInfo) +{ + return B_ERROR; +}