Changeset 14580 in vbox for trunk/include
- Timestamp:
- Nov 25, 2008 4:03:04 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39880
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hwacc_vmx.h
r14557 r14580 886 886 * @{ 887 887 */ 888 #define VMX_VMCS _RO_VM_INSTR_ERROR 0x4400889 #define VMX_VMCS _RO_EXIT_REASON 0x4402890 #define VMX_VMCS _RO_EXIT_INTERRUPTION_INFO 0x4404891 #define VMX_VMCS _RO_EXIT_INTERRUPTION_ERRCODE 0x4406892 #define VMX_VMCS _RO_IDT_INFO 0x4408893 #define VMX_VMCS _RO_IDT_ERRCODE 0x440A894 #define VMX_VMCS _RO_EXIT_INSTR_LENGTH 0x440C895 #define VMX_VMCS _RO_EXIT_INSTR_INFO 0x440E888 #define VMX_VMCS32_RO_VM_INSTR_ERROR 0x4400 889 #define VMX_VMCS32_RO_EXIT_REASON 0x4402 890 #define VMX_VMCS32_RO_EXIT_INTERRUPTION_INFO 0x4404 891 #define VMX_VMCS32_RO_EXIT_INTERRUPTION_ERRCODE 0x4406 892 #define VMX_VMCS32_RO_IDT_INFO 0x4408 893 #define VMX_VMCS32_RO_IDT_ERRCODE 0x440A 894 #define VMX_VMCS32_RO_EXIT_INSTR_LENGTH 0x440C 895 #define VMX_VMCS32_RO_EXIT_INSTR_INFO 0x440E 896 896 /** @} */ 897 897 … … 1543 1543 #if HC_ARCH_BITS == 64 1544 1544 uint64_t uLastError = 0; 1545 int rc = VMXReadVMCS(VMX_VMCS _RO_VM_INSTR_ERROR, &uLastError);1545 int rc = VMXReadVMCS(VMX_VMCS32_RO_VM_INSTR_ERROR, &uLastError); 1546 1546 AssertRC(rc); 1547 1547 return (uint32_t)uLastError; … … 1549 1549 #else /* 32-bit host: */ 1550 1550 uint32_t uLastError = 0; 1551 int rc = VMXReadVMCS32(VMX_VMCS _RO_VM_INSTR_ERROR, &uLastError);1551 int rc = VMXReadVMCS32(VMX_VMCS32_RO_VM_INSTR_ERROR, &uLastError); 1552 1552 AssertRC(rc); 1553 1553 return uLastError;
Note:
See TracChangeset
for help on using the changeset viewer.