xref: /haiku/src/kits/debug/arch/arm64/arch_debug_support.cpp (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 /*
2  * Copyright 2019, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include <debug_support.h>
7 
8 #include "arch_debug_support.h"
9 
10 status_t
11 arch_debug_get_instruction_pointer(debug_context *context, thread_id thread,
12 	void **ip, void **stackFrameAddress)
13 {
14 	return B_ERROR;
15 }
16 
17 
18 status_t
19 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress,
20 	debug_stack_frame_info *stackFrameInfo)
21 {
22 	return B_ERROR;
23 }
24