diff options
| author | Catalin Marinas <[email protected]> | 2009-02-11 12:07:53 +0000 |
|---|---|---|
| committer | Russell King <[email protected]> | 2009-02-12 13:21:17 +0000 |
| commit | 2d7c11bfc91637e5f9bc5f8c9a82aaffcc0e97aa (patch) | |
| tree | 0bb67dae38b1185089b6c9813769689cb79c5ee3 /arch/arm/include/asm/stacktrace.h | |
| parent | [ARM] 5381/1: unwind: Reorganise the traps.c code (diff) | |
| download | kernel-2d7c11bfc91637e5f9bc5f8c9a82aaffcc0e97aa.tar.gz kernel-2d7c11bfc91637e5f9bc5f8c9a82aaffcc0e97aa.zip | |
[ARM] 5382/1: unwind: Reorganise the stacktrace support
This patch changes the walk_stacktrace and its callers for easier
integration of stack unwinding. The arch/arm/kernel/stacktrace.h file is
also moved to arch/arm/include/asm/stacktrace.h.
Signed-off-by: Catalin Marinas <[email protected]>
Signed-off-by: Russell King <[email protected]>
Diffstat (limited to 'arch/arm/include/asm/stacktrace.h')
| -rw-r--r-- | arch/arm/include/asm/stacktrace.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/include/asm/stacktrace.h b/arch/arm/include/asm/stacktrace.h new file mode 100644 index 000000000000..4d0a16441b29 --- /dev/null +++ b/arch/arm/include/asm/stacktrace.h @@ -0,0 +1,15 @@ +#ifndef __ASM_STACKTRACE_H +#define __ASM_STACKTRACE_H + +struct stackframe { + unsigned long fp; + unsigned long sp; + unsigned long lr; + unsigned long pc; +}; + +extern int unwind_frame(struct stackframe *frame); +extern void walk_stackframe(struct stackframe *frame, + int (*fn)(struct stackframe *, void *), void *data); + +#endif /* __ASM_STACKTRACE_H */ |
