projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild
[linux-2.6]
/
include
/
asm-x86
/
kdebug_32.h
1
#ifndef _I386_KDEBUG_H
2
#define _I386_KDEBUG_H 1
3
4
/*
5
* Aug-05 2004 Ported by Prasanna S Panchamukhi <prasanna@in.ibm.com>
6
* from x86_64 architecture.
7
*/
8
9
struct pt_regs;
10
11
/* Grossly misnamed. */
12
enum die_val {
13
DIE_OOPS = 1,
14
DIE_INT3,
15
DIE_DEBUG,
16
DIE_PANIC,
17
DIE_NMI,
18
DIE_DIE,
19
DIE_NMIWATCHDOG,
20
DIE_KERNELDEBUG,
21
DIE_TRAP,
22
DIE_GPF,
23
DIE_CALL,
24
DIE_NMI_IPI,
25
};
26
27
#endif