Merge tag 'pm-4.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[linux/fpc-iii.git] / arch / x86 / include / asm / kdebug.h
blob29a594a3b82aeedccc60f080a5186769cfb1df74
1 #ifndef _ASM_X86_KDEBUG_H
2 #define _ASM_X86_KDEBUG_H
4 #include <linux/notifier.h>
6 struct pt_regs;
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_KERNELDEBUG,
17 DIE_TRAP,
18 DIE_GPF,
19 DIE_CALL,
20 DIE_PAGE_FAULT,
21 DIE_NMIUNKNOWN,
24 extern void die(const char *, struct pt_regs *,long);
25 extern int __must_check __die(const char *, struct pt_regs *, long);
26 extern void show_stack_regs(struct pt_regs *regs);
27 extern void __show_regs(struct pt_regs *regs, int all);
28 extern unsigned long oops_begin(void);
29 extern void oops_end(unsigned long, struct pt_regs *, int signr);
31 #endif /* _ASM_X86_KDEBUG_H */