Changeset 9308 in vbox for trunk/src/VBox/Runtime/generic
- Timestamp:
- Jun 2, 2008 3:08:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/timer-generic.cpp
r8245 r9308 72 72 /** The timer interval. 0 if one-shot. */ 73 73 uint64_t u64NanoInterval; 74 /** The start of the current run .74 /** The start of the current run (ns). 75 75 * This is used to calculate when the timer ought to fire the next time. */ 76 76 uint64_t volatile u64StartTS; 77 /** The start of the current run .77 /** The start of the current run (ns). 78 78 * This is used to calculate when the timer ought to fire the next time. */ 79 79 uint64_t volatile u64NextTS; … … 263 263 #else 264 264 pTimer->u64NextTS = u64NanoTS + RTTimerGetSystemGranularity() / 2; 265 #endif 265 #endif 266 266 } 267 267
Note:
See TracChangeset
for help on using the changeset viewer.