Changeset 87764 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Feb 15, 2021 11:49:16 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142818
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/TMAll.cpp
r87760 r87764 2534 2534 * 2535 2535 * @returns timer clock ticks. 2536 * @param pVM The cross context VM structure. 2536 2537 * @param pTimer Timer handle as returned by one of the create functions. 2537 2538 * @param cMilliSecs The millisecond value ticks to convert. 2538 2539 * @remark There could be rounding and overflow errors here. 2539 2540 */ 2540 VMMDECL(uint64_t) TMTimerFromMilli(PTMTIMER pTimer, uint64_t cMilliSecs) 2541 { 2541 VMMDECL(uint64_t) TMTimerFromMilli(PVMCC pVM, PTMTIMER pTimer, uint64_t cMilliSecs) 2542 { 2543 RT_NOREF(pVM); 2544 Assert(pVM == pTimer->CTX_SUFF(pVM)); 2542 2545 #ifdef IN_RING0 2543 2546 Assert(pTimer->fFlags & TMTIMER_FLAGS_RING0);
Note:
See TracChangeset
for help on using the changeset viewer.