- Timestamp:
- Nov 9, 2012 1:08:56 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_vmx.h
r43826 r43849 455 455 #define VMX_EXIT_INVALID -1 456 456 /** 0 Exception or non-maskable interrupt (NMI). */ 457 #define VMX_EXIT_EXCEPTION 457 #define VMX_EXIT_EXCEPTION_NMI 0 458 458 /** 1 External interrupt. */ 459 459 #define VMX_EXIT_EXTERNAL_IRQ 1 … … 560 560 /** 59 VMFUNC. Guest software attempted to execute VMFUNC. */ 561 561 #define VMX_EXIT_VMFUNC 59 562 /** The maximum exit value (inclusive). */ 563 #define VMX_EXIT_MAX_INDEX VMX_EXIT_VMFUNC 562 564 /** @} */ 563 565 -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r43803 r43849 3396 3396 switch (exitReason) 3397 3397 { 3398 case VMX_EXIT_EXCEPTION :/* 0 Exception or non-maskable interrupt (NMI). */3398 case VMX_EXIT_EXCEPTION_NMI: /* 0 Exception or non-maskable interrupt (NMI). */ 3399 3399 case VMX_EXIT_EXTERNAL_IRQ: /* 1 External interrupt. */ 3400 3400 { … … 4676 4676 switch (exitReason) 4677 4677 { 4678 case VMX_EXIT_EXCEPTION :/* 0 Exception or non-maskable interrupt (NMI). */4678 case VMX_EXIT_EXCEPTION_NMI: /* 0 Exception or non-maskable interrupt (NMI). */ 4679 4679 case VMX_EXIT_EXTERNAL_IRQ: /* 1 External interrupt. */ 4680 4680 case VMX_EXIT_EPT_VIOLATION:
Note:
See TracChangeset
for help on using the changeset viewer.