Changeset 64273 in vbox
- Timestamp:
- Oct 14, 2016 9:30:48 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 111286
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r63256 r64273 100 100 101 101 102 /* On Windows and OS X, HW virtualization use isn't exclusive by103 * default so that VT-x or AMD-V can be shared with other102 /* On Windows, OS X and Solaris, HW virtualization use isn't exclusive 103 * by default so that VT-x or AMD-V can be shared with other 104 104 * hypervisors without requiring user intervention. 105 105 * NB: See also SystemProperties constructor in settings.h 106 106 */ 107 #if defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS) 107 #if defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS) 108 108 m->fExclusiveHwVirt = false; 109 109 #else -
trunk/src/VBox/Main/xml/Settings.cpp
r63774 r64273 1527 1527 fExclusiveHwVirt(true) 1528 1528 { 1529 #if defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS) 1529 #if defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS) 1530 1530 fExclusiveHwVirt = false; 1531 1531 #endif
Note:
See TracChangeset
for help on using the changeset viewer.