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
10status_t
11arch_debug_get_instruction_pointer(debug_context *context, thread_id thread,
12	void **ip, void **stackFrameAddress)
13{
14	return B_ERROR;
15}
16
17
18status_t
19arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress,
20	debug_stack_frame_info *stackFrameInfo)
21{
22	return B_ERROR;
23}
24