Changeset 31767 in vbox
- Timestamp:
- Aug 18, 2010 2:39:06 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64949
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r31765 r31767 125 125 R0PTRTYPE(PPDMQUEUE) pCanRxQueueR0; /**< Rx wakeup signaller - R0. */ 126 126 RCPTRTYPE(PPDMQUEUE) pCanRxQueueRC; /**< Rx wakeup signaller - RC. */ 127 128 #if HC_ARCH_BITS == 64 129 uint32_t padding; 130 #endif 127 uint32_t padding; 131 128 132 129 /**< Link Up(/Restore) Timer. */ 133 130 PTMTIMERR3 pLinkUpTimer; 131 134 132 #ifdef VNET_TX_DELAY 135 133 /**< Transmit Delay Timer - R3. */ … … 140 138 PTMTIMERRC pTxTimerRC; 141 139 142 #if HC_ARCH_BITS == 64 143 uint32_t padding2; 144 #endif 145 146 uint32_t u32i; 147 uint32_t u32AvgDiff; 148 uint32_t u32MinDiff; 149 uint32_t u32MaxDiff; 150 uint64_t u64NanoTS; 151 140 # if HC_ARCH_BITS == 64 141 uint32_t padding2; 142 # endif 143 144 uint32_t u32i; 145 uint32_t u32AvgDiff; 146 uint32_t u32MinDiff; 147 uint32_t u32MaxDiff; 148 uint64_t u64NanoTS; 152 149 #endif /* VNET_TX_DELAY */ 150 153 151 /** Indicates transmission in progress -- only one thread is allowed. */ 154 152 uint32_t uIsTransmitting;
Note:
See TracChangeset
for help on using the changeset viewer.