Changeset 77284 in vbox
- Timestamp:
- Feb 12, 2019 3:41:39 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128800
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/TM.cpp
r76886 r77284 658 658 rc = CFGMR3QueryU32(pCfgHandle, "TimerMillies", &u32Millies); 659 659 if (rc == VERR_CFGM_VALUE_NOT_FOUND) 660 u32Millies = 10;660 u32Millies = VM_IS_HM_ENABLED(pVM) ? 1000 : 10; 661 661 else if (RT_FAILURE(rc)) 662 662 return VMSetError(pVM, rc, RT_SRC_POS,
Note:
See TracChangeset
for help on using the changeset viewer.