Changeset 93631 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Feb 7, 2022 12:45:08 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149776
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PDMInternal.h
r93628 r93631 1514 1514 bool fStateLoaded; 1515 1515 /** Alignment padding. */ 1516 bool afPadding [3];1516 bool afPadding1[3]; 1517 1517 1518 1518 /** The tracing ID of the next device instance. … … 1544 1544 /** @name Network Shaper 1545 1545 * @{ */ 1546 /** Pending TX thread. */ 1547 PPDMTHREAD pNsTxThread; 1548 uint32_t au32Padding[1+8]; 1546 /** Thread that processes choked filter drivers after 1547 * the a PDM_NETSHAPER_MAX_LATENCY period has elapsed. */ 1548 PPDMTHREAD pNsUnchokeThread; 1549 /** Semaphore that the TX thread waits on. */ 1550 RTSEMEVENT hNsUnchokeEvt; 1551 /** Timer handle for waking up pNsUnchokeThread. */ 1552 TMTIMERHANDLE hNsUnchokeTimer; 1553 /** Indicates whether the unchoke timer has been armed already or not. */ 1554 bool volatile fNsUnchokeTimerArmed; 1555 /** Align aNsGroups on a cacheline. */ 1556 bool afPadding2[19]; 1549 1557 /** Number of network shaper groups. 1550 1558 * @note Marked volatile to prevent re-reading after validation. */
Note:
See TracChangeset
for help on using the changeset viewer.