- Timestamp:
- Dec 2, 2008 2:24:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r14899 r14902 297 297 LogRel(("HWACCM: No VMX or SVM CPU extension found. Reason %Rrc\n", pVM->hwaccm.s.lLastError)); 298 298 LogRel(("HWACCM: VMX MSR_IA32_FEATURE_CONTROL=%RX64\n", pVM->hwaccm.s.vmx.msr.feature_ctrl)); 299 #ifdef RT_OS_DARWIN 300 if (VMMIsHwVirtExtForced(pVM)) 301 return VM_SET_ERROR(pVM, VERR_VMX_NO_VMX, "VT-x is not available."); 302 #endif 299 303 return VINF_SUCCESS; 300 304 } … … 323 327 if (VMMIsHwVirtExtForced(pVM)) 324 328 VM_SET_ERROR(pVM, rc, "An active VM already uses software virtualization. It is not allowed to " 325 "simultaneously use VT-x. \n");329 "simultaneously use VT-x."); 326 330 else 327 331 VM_SET_ERROR(pVM, rc, "An active VM already uses Intel VT-x hardware acceleration. It is not " 328 "allowed to simultaneously use software virtualization. \n");332 "allowed to simultaneously use software virtualization."); 329 333 return rc; 330 334
Note:
See TracChangeset
for help on using the changeset viewer.