xref: /haiku/src/kits/debug/arch/mipsel/arch_debug_support.cpp (revision 893988af824e65e49e55f517b157db8386e8002b)
1 /*
2  * Copyright 2009 Jonas Sundström, jonas@kirilla.com
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "arch_debug_support.h"
8 
9 #include <debug_support.h>
10 
11 
12 status_t
13 arch_debug_get_instruction_pointer(debug_context *context, thread_id thread,
14 	void **ip, void **stackFrameAddress)
15 {
16 #warning IMPLEMENT arch_debug_get_instruction_pointer
17 	return B_ERROR;
18 }
19 
20 
21 status_t
22 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress,
23 	debug_stack_frame_info *stackFrameInfo)
24 {
25 #warning IMPLEMENT arch_debug_get_stack_frame
26 	return B_ERROR;
27 }
28 
29