xref: /haiku/src/kits/debug/arch/arm/arch_debug_support.cpp (revision c4472577695ee6ef2df30fd1c0b5a4329dbac50b)
1 /*
2  * Copyright 2012, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Ithamar R. Adema <ithamar@upgrade-android.com>
7  */
8 
9 
10 #include <debug_support.h>
11 
12 #include "arch_debug_support.h"
13 
14 status_t
15 arch_debug_get_instruction_pointer(debug_context *context, thread_id thread,
16 	void **ip, void **stackFrameAddress)
17 {
18 	return B_ERROR;
19 }
20 
21 
22 status_t
23 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress,
24 	debug_stack_frame_info *stackFrameInfo)
25 {
26 	return B_ERROR;
27 }
28