Changeset 731 in vbox
- Timestamp:
- Feb 6, 2007 11:58:54 PM (18 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile
r584 r731 34 34 35 35 SUBDIRS = \ 36 testcase \ 36 37 PC/BIOS \ 37 38 PC/Etherboot-src \ -
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r723 r731 125 125 /** The current frame size. Starts at -1. Only the top frame can be expanded. */ 126 126 int32_t cb; 127 #if HC_ARCH_BITS == 64 128 uint32_t Alignment; 129 #endif 127 130 /** The virtual address of the frame (copied or direct pointer) */ 128 131 RTR3PTR pvBuf; … … 167 170 /** The recv buffer. */ 168 171 uint8_t abRecvBuf[4096]; 172 173 /** Pending send packet counter. */ 174 uint32_t cPendingSends; 169 175 170 176 /** Size of a RX/TX descriptor (8 or 16 bytes according to SWSTYLE */ … … 208 214 /** Number of times we've reported the link down. */ 209 215 RTUINT cLinkDownReported; 216 #if HC_ARCH_BITS == 64 || GC_ARCH_BITS == 64 217 RTUINT Alignment; 218 #endif 210 219 /** The configured MAC address. */ 211 220 PDMMAC MacConfigured; … … 224 233 /** Access critical section. */ 225 234 PDMCRITSECT CritSect; 226 227 /** Pending send packet counter. */228 uint32_t cPendingSends;229 235 230 236 #ifdef PCNET_NO_POLLING
Note:
See TracChangeset
for help on using the changeset viewer.