]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-x86/kdebug.h
49e5c91d490c0c44c329365e7e984acb16f6362c
[linux-2.6-omap-h63xx.git] / include / asm-x86 / kdebug.h
1 #ifndef _ASM_X86_KDEBUG_H
2 #define _ASM_X86_KDEBUG_H
3
4 #include <linux/notifier.h>
5
6 struct pt_regs;
7
8 /* Grossly misnamed. */
9 enum die_val {
10         DIE_OOPS = 1,
11         DIE_INT3,
12         DIE_DEBUG,
13         DIE_PANIC,
14         DIE_NMI,
15         DIE_DIE,
16         DIE_NMIWATCHDOG,
17         DIE_KERNELDEBUG,
18         DIE_TRAP,
19         DIE_GPF,
20         DIE_CALL,
21         DIE_NMI_IPI,
22         DIE_PAGE_FAULT,
23 };
24
25 extern void early_printk(const char *fmt, ...) __attribute__((format(printf,1,2)));
26 extern void printk_address(unsigned long address);
27 extern void die(const char *,struct pt_regs *,long);
28 extern void __die(const char *,struct pt_regs *,long);
29 extern void show_registers(struct pt_regs *regs);
30 extern void __show_registers(struct pt_regs *, int all);
31 extern void show_trace(struct task_struct *, struct pt_regs *, unsigned long *);
32 extern void __show_regs(struct pt_regs *regs);
33 extern void show_regs(struct pt_regs *regs);
34 extern void dump_pagetable(unsigned long);
35 extern unsigned long oops_begin(void);
36 extern void oops_end(unsigned long);
37
38 #endif