Changeset 79691 in vbox
- Timestamp:
- Jul 11, 2019 12:19:10 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132027
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_vmx.h
r79685 r79691 2646 2646 #define VMX_EXIT_INT_INFO_IS_VALID(a) (((a) >> 31) & 1) 2647 2647 2648 /** If the VM-exit interruption information field indicates an page-fault. */ 2649 #define VMX_EXIT_INT_INFO_IS_XCPT_PF(a) (((a) & ( VMX_BF_EXIT_INT_INFO_VALID_MASK \ 2650 | VMX_BF_EXIT_INT_INFO_TYPE_MASK \ 2651 | VMX_BF_EXIT_INT_INFO_VECTOR_MASK)) \ 2652 == ( RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VALID, 1) \ 2653 | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_TYPE, VMX_EXIT_INT_INFO_TYPE_HW_XCPT) \ 2654 | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VECTOR, X86_XCPT_PF))) 2648 2655 /** If the VM-exit interruption information field indicates an NMI. */ 2649 2656 #define VMX_EXIT_INT_INFO_IS_XCPT_NMI(a) (((a) & ( VMX_BF_EXIT_INT_INFO_VALID_MASK \
Note:
See TracChangeset
for help on using the changeset viewer.