Changeset 49774 in vbox
- Timestamp:
- Dec 4, 2013 3:07:09 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
include/VBox/vmm/hm_vmx.h (modified) (1 diff)
-
src/VBox/VMM/VMMR0/HMVMXR0.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_vmx.h
r49755 r49774 1493 1493 #define VMX_EXIT_INTERRUPTION_INFO_TYPE_NMI 2 1494 1494 #define VMX_EXIT_INTERRUPTION_INFO_TYPE_HW_XCPT 3 1495 #define VMX_EXIT_INTERRUPTION_INFO_TYPE_SW_INT 4 /**< int xx */1496 #define VMX_EXIT_INTERRUPTION_INFO_TYPE_ DB_XCPT 5 /**< Why are we getting this one?? */1495 #define VMX_EXIT_INTERRUPTION_INFO_TYPE_SW_INT 4 1496 #define VMX_EXIT_INTERRUPTION_INFO_TYPE_PRIV_SW_XCPT 5 1497 1497 #define VMX_EXIT_INTERRUPTION_INFO_TYPE_SW_XCPT 6 1498 1498 /** @} */ -
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r49757 r49774 9271 9271 switch (uIntType) 9272 9272 { 9273 case VMX_EXIT_INTERRUPTION_INFO_TYPE_SW_XCPT: /* Software exception. (#BP or #OF) */ 9273 case VMX_EXIT_INTERRUPTION_INFO_TYPE_PRIV_SW_XCPT: /* Privileged software exception. (#DB from ICEBP) */ 9274 case VMX_EXIT_INTERRUPTION_INFO_TYPE_SW_XCPT: /* Software exception. (#BP or #OF) */ 9274 9275 Assert(uVector == X86_XCPT_DB || uVector == X86_XCPT_BP || uVector == X86_XCPT_OF); 9275 9276 /* no break */
Note:
See TracChangeset
for help on using the changeset viewer.

