Changeset 14543 in vbox for trunk/src/VBox/Main/ConsoleImpl2.cpp
- Timestamp:
- Nov 24, 2008 7:36:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r14525 r14543 205 205 else 206 206 fHWVirtExEnabled = (hwVirtExEnabled == TSBool_True); 207 #ifndef RT_OS_DARWIN /** @todo Implement HWVirtExt on darwin. See #1865. */ 207 #ifdef RT_OS_DARWIN 208 rc = CFGMR3InsertInteger(pRoot, "HwVirtExtForced", fHWVirtExEnabled); RC_CHECK(); 209 #else 210 rc = CFGMR3InsertInteger(pRoot, "HwVirtExtForced", 0); RC_CHECK(); 211 #endif 208 212 if (fHWVirtExEnabled) 209 213 { 210 214 PCFGMNODE pHWVirtExt; 211 215 rc = CFGMR3InsertNode(pRoot, "HWVirtExt", &pHWVirtExt); RC_CHECK(); 212 rc = CFGMR3InsertInteger(pHWVirtExt, "Enabled", 1); RC_CHECK(); 213 } 214 #endif 216 rc = CFGMR3InsertInteger(pHWVirtExt, "Enabled", 1); RC_CHECK(); 217 } 215 218 216 219 /* Nested paging (VT-x/AMD-V) */
Note:
See TracChangeset
for help on using the changeset viewer.