Changeset 80117 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Aug 3, 2019 1:52:22 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/TMInternal.h
r76585 r80117 305 305 uint8_t cPctOther; 306 306 /** Explicit alignment padding */ 307 uint8_t au8Alignment[5]; 307 uint8_t au8Alignment[1]; 308 /** Index into aHistory of the current entry. */ 309 uint16_t volatile idxHistory; 310 /** Number of valid history entries before idxHistory. */ 311 uint16_t volatile cHistoryEntries; 308 312 309 313 /** Previous cNsTotal value. */ … … 313 317 /** Previous cNsHalted value. */ 314 318 uint64_t cNsPrevHalted; 319 /** Data for the last 30 min (given an interval of 1 second). */ 320 struct 321 { 322 uint8_t cPctExecuting; 323 /** The percent of the period spent halted. */ 324 uint8_t cPctHalted; 325 /** The percent of the period spent on other things. */ 326 uint8_t cPctOther; 327 } aHistory[30*60]; 315 328 } TMCPULOADSTATE; 316 329 AssertCompileSizeAlignment(TMCPULOADSTATE, 8);
Note:
See TracChangeset
for help on using the changeset viewer.