Changeset 23206 in vbox
- Timestamp:
- Sep 22, 2009 9:41:07 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r23205 r23206 65 65 typedef struct DRVINTNET 66 66 { 67 #ifdef VBOX_WITH_STATISTICS 68 /** Profiling packet transmit runs. */ 69 STAMPROFILE StatTransmit; 70 /** Profiling packet receive runs. */ 71 STAMPROFILEADV StatReceive; 72 #endif /* VBOX_WITH_STATISTICS */ 73 67 74 /** The network interface. */ 68 75 PDMINETWORKCONNECTOR INetworkConnector; … … 90 97 * as late as possible. */ 91 98 bool fActivateEarlyDeactivateLate; 92 bool bAlignment[6];93 99 94 100 #ifdef LOG_ENABLED … … 98 104 uint64_t u64LastReceiveTS; 99 105 #endif 100 101 #ifdef VBOX_WITH_STATISTICS102 /** Profiling packet transmit runs. */103 STAMPROFILE StatTransmit;104 /** Profiling packet receive runs. */105 STAMPROFILEADV StatReceive;106 #endif /* VBOX_WITH_STATISTICS */107 106 108 107 /** The network name. */
Note:
See TracChangeset
for help on using the changeset viewer.