758962ec3b
a call chain contains a specific symbol (or address). * Added a new KDL command "calling" that you can use to get a list of threads that have a specific function in their call chain. * Removed extraneous white space. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24594 a95241bf-73f2-0310-859d-f6bbb57e9c96
33 lines
690 B
C
33 lines
690 B
C
/*
|
|
* Copyright 2005-2008, Axel Dörfler, axeld@pinc-software.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
* Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_DEBUG_H
|
|
#define _KERNEL_ARCH_DEBUG_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
struct kernel_args;
|
|
struct thread;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t arch_debug_init(kernel_args *args);
|
|
void *arch_debug_get_caller(void);
|
|
bool arch_debug_contains_call(struct thread *thread, const char *symbol,
|
|
addr_t start, addr_t end);
|
|
void arch_debug_save_registers(int *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_ARCH_DEBUG_H */
|