Changeset 22224 in vbox
- Timestamp:
- Aug 13, 2009 8:48:56 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r22221 r22224 128 128 */ 129 129 volatile uint32_t au32TSCHistory[8]; 130 /** The interval between the last two NanoTS updates. (experiment for now) */131 volatile uint32_t u32UpdateIntervalNS;132 130 /** Reserved for future per processor data. */ 133 volatile uint32_t au32Reserved[ 5];131 volatile uint32_t au32Reserved[6]; 134 132 } SUPGIPCPU; 135 133 AssertCompileSize(SUPGIPCPU, 96); -
trunk/include/VBox/sup.mac
r22223 r22224 42 42 .iTSCHistoryHead resd 1 43 43 .au32TSCHistory resd 8 44 .u32UpdateIntervalNS resd 1 45 .au32Reserved resd 5 44 .au32Reserved resd 6 46 45 endstruc 47 46 -
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r22222 r22224 5288 5288 uint64_t u64CpuHz; 5289 5289 5290 /* Delta between this and the previous update. */5291 pGipCpu->u32UpdateIntervalNS = (uint32_t)(u64NanoTS - pGipCpu->u64NanoTS);5292 5293 5290 /* 5294 5291 * Update the NanoTS.
Note:
See TracChangeset
for help on using the changeset viewer.