Changeset 87774 in vbox for trunk/src/VBox/VMM/include/TMInline.h
- Timestamp:
- Feb 16, 2021 11:40:35 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/TMInline.h
r87766 r87774 26 26 * Used to unlink a timer from the active list. 27 27 * 28 * @param pVM The cross context VM structure. 28 29 * @param pQueue The timer queue. 29 30 * @param pTimer The timer that needs linking. … … 31 32 * @remarks Called while owning the relevant queue lock. 32 33 */ 33 DECL_FORCE_INLINE(void) tmTimerQueueUnlinkActive(P TMTIMERQUEUE pQueue, PTMTIMER pTimer)34 DECL_FORCE_INLINE(void) tmTimerQueueUnlinkActive(PVMCC pVM, PTMTIMERQUEUE pQueue, PTMTIMER pTimer) 34 35 { 35 36 #ifdef VBOX_STRICT … … 39 40 : enmState == TMTIMERSTATE_PENDING_SCHEDULE || enmState == TMTIMERSTATE_PENDING_STOP_SCHEDULE); 40 41 #endif 42 RT_NOREF(pVM); 41 43 42 44 const PTMTIMER pPrev = TMTIMER_GET_PREV(pTimer); … … 48 50 TMTIMER_SET_HEAD(pQueue, pNext); 49 51 pQueue->u64Expire = pNext ? pNext->u64Expire : INT64_MAX; 50 DBGFTRACE_U64_TAG(p Timer->CTX_SUFF(pVM), pQueue->u64Expire, "tmTimerQueueUnlinkActive");52 DBGFTRACE_U64_TAG(pVM, pQueue->u64Expire, "tmTimerQueueUnlinkActive"); 51 53 } 52 54 if (pNext)
Note:
See TracChangeset
for help on using the changeset viewer.