Changeset 43670 in vbox for trunk/src/VBox
- Timestamp:
- Oct 17, 2012 2:36:07 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 81458
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r43509 r43670 1324 1324 { 1325 1325 LogRel(("HM: VMX setup failed with rc=%Rrc!\n", rc)); 1326 LogRel(("HM: Last instruction error %x\n", pVM->aCpus[0].hm.s.vmx.lasterror.ulInstrError)); 1326 for (VMCPUID i = 0; i < pVM->cCpus; i++) 1327 LogRel(("HM: CPU[%ld] Last instruction error %x\n", i, pVM->aCpus[0].hm.s.vmx.lasterror.ulInstrError)); 1327 1328 pVM->fHMEnabled = false; 1328 1329 } -
trunk/src/VBox/VMM/include/HMInternal.h
r43509 r43670 568 568 /** Current CR4 mask. */ 569 569 uint64_t cr4_mask; 570 /** Current exception bitmap. */ 571 uint32_t u32XcptBitmap; 572 uint32_t uAlignment0; 570 573 /** Current EPTP. */ 571 574 RTHCPHYS GCPhysEPTP;
Note:
See TracChangeset
for help on using the changeset viewer.