Changeset 47152 in vbox for trunk/include/iprt
- Timestamp:
- Jul 15, 2013 10:50:13 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r46380 r47152 3045 3045 /** \#PF - Page fault. */ 3046 3046 X86_XCPT_PF = 0x0e, 3047 /* 0x0f is reserved . */3047 /* 0x0f is reserved (to avoid conflict with spurious interrupts in BIOS setup). */ 3048 3048 /** \#MF - Math fault (FPU). */ 3049 3049 X86_XCPT_MF = 0x10, … … 3053 3053 X86_XCPT_MC = 0x12, 3054 3054 /** \#XF - SIMD Floating-Pointer Exception. */ 3055 X86_XCPT_XF = 0x13 3055 X86_XCPT_XF = 0x13, 3056 /** \#VE - Virtualzation Exception. */ 3057 X86_XCPT_VE = 0x14, 3058 /** \#SX - Security Exception. */ 3059 X86_XCPT_SX = 0x2f 3056 3060 } X86XCPT; 3057 3061 /** Pointer to a x86 exception code. */ … … 3060 3064 typedef const X86XCPT *PCX86XCPT; 3061 3065 /** The maximum exception value. */ 3062 #define X86_XCPT_MAX (X86_XCPT_ XF)3066 #define X86_XCPT_MAX (X86_XCPT_SX) 3063 3067 3064 3068
Note:
See TracChangeset
for help on using the changeset viewer.