tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / kits / debug / arch / m68k / arch_debug_support.cpp
blob19aac551685b8f4cad29a00f773085feac3cfe41
1 /*
2 * Copyright 2005, Ingo Weinhold, bonefish@users.sf.net.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <debug_support.h>
9 #include "arch_debug_support.h"
12 struct stack_frame {
13 struct stack_frame *previous;
14 void *return_address;
18 status_t
19 arch_debug_get_instruction_pointer(debug_context *context, thread_id thread,
20 void **ip, void **stackFrameAddress)
22 // get the CPU state
23 #warning M68K: TODO
24 return B_ERROR;
28 status_t
29 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress,
30 debug_stack_frame_info *stackFrameInfo)
32 #warning M68K: TODO
33 return B_ERROR;