aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86_64/stacktrace.h
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-09-26 10:52:34 +0200
committerAndi Kleen <andi@basil.nowhere.org>2006-09-26 10:52:34 +0200
commitc0b766f13d8e1189ce4d00e54700c9d96b543b9a (patch)
tree7acb6b7a46b3b0b53328f7d72949f75a57509064 /include/asm-x86_64/stacktrace.h
parent[PATCH] Move unwind_init earlier (diff)
downloadlinux-dev-c0b766f13d8e1189ce4d00e54700c9d96b543b9a.tar.xz
linux-dev-c0b766f13d8e1189ce4d00e54700c9d96b543b9a.zip
[PATCH] Merge stacktrace and show_trace
This unifies the standard backtracer and the new stacktrace in memory backtracer. The standard one is converted to use callbacks and then reimplement stacktrace using new callbacks. The main advantage is that stacktrace can now use the new dwarf2 unwinder and avoid false positives in many cases. I kept it simple to make sure the standard backtracer stays reliable. Cc: mingo@elte.hu Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'include/asm-x86_64/stacktrace.h')
-rw-r--r--include/asm-x86_64/stacktrace.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/asm-x86_64/stacktrace.h b/include/asm-x86_64/stacktrace.h
new file mode 100644
index 000000000000..5eb9799bef76
--- /dev/null
+++ b/include/asm-x86_64/stacktrace.h
@@ -0,0 +1,18 @@
+#ifndef _ASM_STACKTRACE_H
+#define _ASM_STACKTRACE_H 1
+
+/* Generic stack tracer with callbacks */
+
+struct stacktrace_ops {
+ void (*warning)(void *data, char *msg);
+ /* msg must contain %s for the symbol */
+ void (*warning_symbol)(void *data, char *msg, unsigned long symbol);
+ void (*address)(void *data, unsigned long address);
+ /* On negative return stop dumping */
+ int (*stack)(void *data, char *name);
+};
+
+void dump_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack,
+ struct stacktrace_ops *ops, void *data);
+
+#endif