- Timestamp:
- Mar 19, 2012 1:37:04 PM (13 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/NetworkAdapterImpl.cpp
r40505 r40536 1439 1439 { 1440 1440 HRESULT hrc = mParent->getBandwidthGroup(strBwGroup, pBwGroup, false /* fSetError */); 1441 1441 NOREF(hrc); 1442 1442 Assert(SUCCEEDED(hrc)); /* This is not allowed to fail because the existence of the group was checked when it was attached. */ 1443 1443 } … … 1470 1470 { 1471 1471 HRESULT hrc = mParent->getBandwidthGroup(mData->mBandwidthGroup, pOldBwGroup, false /* fSetError */); 1472 1472 NOREF(hrc); 1473 1473 Assert(SUCCEEDED(hrc)); /* This is not allowed to fail because the existence of the group was checked when it was attached. */ 1474 1474 } -
trunk/src/VBox/Main/src-server/Performance.cpp
r40358 r40536 163 163 void CGRQEnable::debugPrint(void *aObject, const char *aFunction, const char *aText) 164 164 { 165 NOREF(aObject); 166 NOREF(aFunction); 167 NOREF(aText); 165 168 LogAleksey(("{%p} " LOG_FN_FMT ": CGRQEnable(mask=0x%x) %s\n", 166 169 aObject, aFunction, mMask, aText)); … … 175 178 void CGRQDisable::debugPrint(void *aObject, const char *aFunction, const char *aText) 176 179 { 180 NOREF(aObject); 181 NOREF(aFunction); 182 NOREF(aText); 177 183 LogAleksey(("{%p} " LOG_FN_FMT ": CGRQDisable(mask=0x%x) %s\n", 178 184 aObject, aFunction, mMask, aText)); … … 186 192 void CGRQAbort::debugPrint(void *aObject, const char *aFunction, const char *aText) 187 193 { 194 NOREF(aObject); 195 NOREF(aFunction); 196 NOREF(aText); 188 197 LogAleksey(("{%p} " LOG_FN_FMT ": CGRQAbort %s\n", 189 198 aObject, aFunction, aText)); … … 363 372 this, 0, RTTHREADTYPE_MAIN_WORKER, RTTHREADFLAGS_WAITABLE, 364 373 "CGMgr"); 374 NOREF(rc); 365 375 LogAleksey(("{%p} " LOG_FN_FMT ": RTThreadCreate returned %u (mThread=%p)\n", 366 376 this, __PRETTY_FUNCTION__, rc));
Note:
See TracChangeset
for help on using the changeset viewer.