Changeset 14885 in vbox for trunk/src/VBox/VMM/PATM/PATMSSM.cpp
- Timestamp:
- Dec 2, 2008 9:33:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/PATMSSM.cpp
r14884 r14885 711 711 && HWACCMIsEnabled(pVM)) 712 712 { 713 VM_SET_ERROR(pVM, rc, "An active VM already uses Intel VT-x hardware acceleration. It is not " 714 "allowed to simultaneously use software virtualization.\n"); 713 if (CPUMGetCPUVendor(pVM) == CPUMCPUVENDOR_AMD) 714 VM_SET_ERROR(pVM, rc, "An active VM already uses AMD-V hardware acceleration. It is not " 715 "allowed to simultaneously use software virtualization.\n"); 716 else 717 VM_SET_ERROR(pVM, rc, "An active VM already uses Intel VT-x hardware acceleration. It is not " 718 "allowed to simultaneously use software virtualization.\n"); 715 719 return VERR_ACCESS_DENIED; 716 720 }
Note:
See TracChangeset
for help on using the changeset viewer.