Changeset 7501 in vbox
- Timestamp:
- Mar 19, 2008 12:40:30 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28960
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r7496 r7501 238 238 pVM->hwaccm.s.fAllowed ^= 1; 239 239 LogRel(("HWACCMR3InitFinalize: new HWACCM status = %s\n", pVM->hwaccm.s.fAllowed ? "enabled" : "disabled")); 240 241 if (pVM->hwaccm.s.fAllowed) 242 { 243 if (pVM->hwaccm.s.vmx.fSupported) 244 VMSetRuntimeError(pVM, false, "HwAccmModeChangeDisallowed", "An active VM already uses Intel VT-x hardware acceleration. It is not allowed to simultaneously use software virtualization, therefor this VM will be run using VT-x as well.\n"); 245 else 246 VMSetRuntimeError(pVM, false, "HwAccmModeChangeDisallowed", "An active VM already uses AMD-V hardware acceleration. It is not allowed to simultaneously use software virtualization, therefor this VM will be run using AMD-V as well.\n"); 247 } 248 else 249 VMSetRuntimeError(pVM, false, "HwAccmModeChangeDisallowed", "An active VM already uses software virtualization. It is not allowed to simultaneously use VT-x or AMD-V, therefor this VM will be run using software virtualization as well.\n"); 240 250 } 241 251
Note:
See TracChangeset
for help on using the changeset viewer.