Changeset 1876 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Apr 3, 2007 11:59:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/TM.cpp
r1058 r1876 79 79 #include <iprt/semaphore.h> 80 80 #include <iprt/string.h> 81 #include <iprt/env.h> 82 81 83 82 84 /******************************************************************************* … … 204 206 return VMSetError(pVM, rc, RT_SRC_POS, 205 207 N_("Configuration error: Failed to querying bool value \"UseRealTSC\". (%Vrc)"), rc); 208 #if 1 /* temporary hack */ 209 if (RTEnvExist("VBOX_TM_VIRTUALIZED_TSC")) 210 pVM->tm.s.fTSCUseRealTSC = false; 211 #endif 206 212 if (!pVM->tm.s.fTSCUseRealTSC) 207 213 pVM->tm.s.fTSCVirtualized = true;
Note:
See TracChangeset
for help on using the changeset viewer.