Changeset 2883 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- May 25, 2007 4:56:45 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/TMAllVirtual.cpp
r2869 r2883 170 170 else if (u64PrevNanoTS) 171 171 { 172 /* Something has gone bust, if negative offset it's real bad. */172 /* Something has gone bust, if negative offset it's real bad. */ 173 173 ASMAtomicIncU32(&pVM->tm.s.cVirtualRawBadRawPrev); 174 174 if ((int64_t)u64DeltaPrev < 0) … … 179 179 u64DeltaPrev, u64PrevNanoTS, u64NanoTS, u64Delta)); 180 180 #ifdef DEBUG_bird 181 AssertMsgFailed(("u64DeltaPrev=%RI64 u64PrevNanoTS=0x%016RX64 u64NanoTS=0x%016RX64 u64Delta=%#RX64\n", 182 u64DeltaPrev, u64PrevNanoTS, u64NanoTS, u64Delta)); 181 /** @todo there are some hickups during boot and reset that can cause 2-5 seconds delays. Investigate... */ 182 AssertMsg(u64PrevNanoTS > UINT64_C(100000000000) /* 100s */, 183 ("u64DeltaPrev=%RI64 u64PrevNanoTS=0x%016RX64 u64NanoTS=0x%016RX64 u64Delta=%#RX64\n", 184 u64DeltaPrev, u64PrevNanoTS, u64NanoTS, u64Delta)); 183 185 #endif 184 186 }
Note:
See TracChangeset
for help on using the changeset viewer.