1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_KDEBUG_H
3 #define _ASM_X86_KDEBUG_H
5 #include <linux/notifier.h>
9 /* Grossly misnamed. */
28 * For when userspace crashed, but we don't think it's our fault, and
29 * therefore don't print kernel registers.
35 extern void die(const char *, struct pt_regs
*,long);
36 extern int __must_check
__die(const char *, struct pt_regs
*, long);
37 extern void show_stack_regs(struct pt_regs
*regs
);
38 extern void __show_regs(struct pt_regs
*regs
, enum show_regs_mode
);
39 extern void show_iret_regs(struct pt_regs
*regs
);
40 extern unsigned long oops_begin(void);
41 extern void oops_end(unsigned long, struct pt_regs
*, int signr
);
43 #endif /* _ASM_X86_KDEBUG_H */