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-04-27 06:54:27 +04:00
|
|
|
int32 arch_debug_get_stack_trace(addr_t* returnAddresses, int32 maxCount,
|
2008-09-15 17:09:14 +04:00
|
|
|
int32 skipIframes, int32 skipFrames, bool userOnly);
|
2008-08-23 03:59:21 +04:00
|
|
|
void *arch_debug_get_interrupt_pc();
|
2008-03-26 20:08:51 +03:00
|
|
|
bool arch_debug_contains_call(struct thread *thread, const char *symbol,
|
2008-04-27 06:54:27 +04:00
|
|
|
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
|
|
|
|
2008-08-25 03:01:43 +04:00
|
|
|
bool arch_is_debug_variable_defined(const char* variableName);
|
|
|
|
status_t arch_set_debug_variable(const char* variableName, uint64 value);
|
|
|
|
status_t arch_get_debug_variable(const char* variableName, uint64* value);
|
|
|
|
|
2005-05-25 17:58:32 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-08-14 01:42:53 +04:00
|
|
|
#endif /* _KERNEL_ARCH_DEBUG_H */
|