Changeset 33731 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Nov 3, 2010 3:57:50 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 67363
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r33661 r33731 1620 1620 1621 1621 /* The default value of large page supports depends on the host: 1622 * - 64 bits host -> true 1622 * - 64 bits host -> true, unless it's Linux (pending further prediction work due to excessively expensive large page allocations) 1623 1623 * - 32 bits host -> false 1624 1624 */ 1625 #if HC_ARCH_BITS == 64 1625 #if HC_ARCH_BITS == 64 && !defined(RT_OS_LINUX) 1626 1626 fLargePages = true; 1627 1627 #else
Note:
See TracChangeset
for help on using the changeset viewer.