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