From 080f08465bb69947417456ac0f1e634960020c3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sundstr=C3=B6m?= Date: Sun, 23 Aug 2009 01:34:04 +0000 Subject: [PATCH] Add stubbed out debug support functions for arch mipsel. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32620 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../debug/arch/mipsel/arch_debug_support.cpp | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/kits/debug/arch/mipsel/arch_debug_support.cpp diff --git a/src/kits/debug/arch/mipsel/arch_debug_support.cpp b/src/kits/debug/arch/mipsel/arch_debug_support.cpp new file mode 100644 index 0000000000..8da1d7ce4c --- /dev/null +++ b/src/kits/debug/arch/mipsel/arch_debug_support.cpp @@ -0,0 +1,28 @@ +/* + * Copyright 2009 Jonas Sundström, jonas@kirilla.com + * All rights reserved. Distributed under the terms of the MIT License. + */ + + +#include "arch_debug_support.h" + +#include + + +status_t +arch_debug_get_instruction_pointer(debug_context *context, thread_id thread, + void **ip, void **stackFrameAddress) +{ +#warning IMPLEMENT arch_debug_get_instruction_pointer + return B_ERROR; +} + + +status_t +arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, + debug_stack_frame_info *stackFrameInfo) +{ +#warning IMPLEMENT arch_debug_get_stack_frame + return B_ERROR; +} +