Changeset 21606 in vbox for trunk/src/VBox/VMM/TM.cpp
- Timestamp:
- Jul 15, 2009 12:48:19 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/TM.cpp
r21527 r21606 2009 2009 * Process the expired timers moving the clock along as we progress. 2010 2010 */ 2011 #ifdef DEBUG_bird 2011 2012 #ifdef VBOX_STRICT 2012 2013 uint64_t u64Prev = u64Now; NOREF(u64Prev); 2014 #endif 2013 2015 #endif 2014 2016 while (pNext && pNext->u64Expire <= u64Max) … … 2040 2042 2041 2043 /* advance the clock - don't permit timers to be out of order or armed in the 'past'. */ 2044 #ifdef DEBUG_bird 2042 2045 #ifdef VBOX_STRICT 2043 2046 AssertMsg(pTimer->u64Expire >= u64Prev, ("%'RU64 < %'RU64 %s\n", pTimer->u64Expire, u64Prev, pTimer->pszDesc)); 2044 2047 u64Prev = pTimer->u64Expire; 2048 #endif 2045 2049 #endif 2046 2050 ASMAtomicWriteU64(&pVM->tm.s.u64VirtualSync, pTimer->u64Expire);
Note:
See TracChangeset
for help on using the changeset viewer.