Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef _ASM_X86_KDEBUG_H
2#define _ASM_X86_KDEBUG_H
3
4#include <linux/notifier.h>
5
6struct pt_regs;
7
8/* Grossly misnamed. */
9enum 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,
22};
23
24extern void printk_address(unsigned long address, int reliable);
25extern void die(const char *, struct pt_regs *,long);
26extern int __must_check __die(const char *, struct pt_regs *, long);
27extern void show_registers(struct pt_regs *regs);
28extern void show_trace(struct task_struct *t, struct pt_regs *regs,
29 unsigned long *sp, unsigned long bp);
30extern void __show_regs(struct pt_regs *regs, int all);
31extern void show_regs(struct pt_regs *regs);
32extern unsigned long oops_begin(void);
33extern void oops_end(unsigned long, struct pt_regs *, int signr);
34#ifdef CONFIG_KEXEC
35extern int in_crash_kexec;
36#else
37/* no crash dump is ever in progress if no crash kernel can be kexec'd */
38#define in_crash_kexec 0
39#endif
40
41#endif /* _ASM_X86_KDEBUG_H */