Changeset 46446 in vbox
- Timestamp:
- Jun 7, 2013 7:00:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestImpl.cpp
r45674 r46446 200 200 { 201 201 PSTAMCOUNTER pCnt = (PSTAMCOUNTER)pvSample; 202 c har *pszEnd = strrchr((char*)pszName, '/');202 const char *pszEnd = strrchr(pszName, '/'); 203 203 if (pszEnd) 204 204 { … … 298 298 uint64_t uTxPrev = mNetStatTx; 299 299 mNetStatRx = mNetStatTx = 0; 300 /** @todo This can be really expensive as well as horribly wrong! */ 300 301 rc = STAMR3Enum(ptrVM.rawUVM(), "*/ReceiveBytes|*/TransmitBytes", staticEnumStatsCallback, this); 301 302 AssertRC(rc);
Note:
See TracChangeset
for help on using the changeset viewer.