Changeset 23208 in vbox
- Timestamp:
- Sep 22, 2009 9:45:30 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 52655
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r23206 r23208 65 65 typedef struct DRVINTNET 66 66 { 67 #ifdef VBOX_WITH_STATISTICS68 /** Profiling packet transmit runs. */69 STAMPROFILE StatTransmit;70 /** Profiling packet receive runs. */71 STAMPROFILEADV StatReceive;72 #endif /* VBOX_WITH_STATISTICS */73 74 67 /** The network interface. */ 75 68 PDMINETWORKCONNECTOR INetworkConnector; … … 104 97 uint64_t u64LastReceiveTS; 105 98 #endif 99 100 #ifdef VBOX_WITH_STATISTICS 101 /** Profiling packet transmit runs. */ 102 STAMPROFILE StatTransmit; 103 /** Profiling packet receive runs. */ 104 STAMPROFILEADV StatReceive; 105 #endif /* VBOX_WITH_STATISTICS */ 106 106 107 107 /** The network name. */
Note:
See TracChangeset
for help on using the changeset viewer.