2002-08-14 01:42:53 +04:00
|
|
|
/*
|
2008-03-26 20:08:51 +03:00
|
|
|
* Copyright 2005-2008, Axel Dörfler, axeld@pinc-software.de.
|
2005-05-25 17:58:32 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
* Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2002-08-14 01:42:53 +04:00
|
|
|
#ifndef _KERNEL_ARCH_DEBUG_H
|
|
|
|
#define _KERNEL_ARCH_DEBUG_H
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2005-05-25 17:58:32 +04:00
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
struct kernel_args;
|
2008-03-26 20:08:51 +03:00
|
|
|
struct thread;
|
2005-05-25 17:58:32 +04:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-05-29 17:01:38 +04:00
|
|
|
status_t arch_debug_init(kernel_args *args);
|
|
|
|
void *arch_debug_get_caller(void);
|
2008-03-26 20:08:51 +03:00
|
|
|
bool arch_debug_contains_call(struct thread *thread, const char *symbol,
|
|
|
|
addr_t start, addr_t end);
|
2005-05-29 17:01:38 +04:00
|
|
|
void arch_debug_save_registers(int *);
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2005-05-25 17:58:32 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-08-14 01:42:53 +04:00
|
|
|
#endif /* _KERNEL_ARCH_DEBUG_H */
|