- Timestamp:
- Jul 26, 2016 10:20:00 AM (8 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/time/timesup.cpp
r62477 r62556 132 132 uint16_t iCpuSet, uint16_t iGipCpu) 133 133 { 134 RT_NOREF_PV(pData); RT_NOREF_PV(idApic); RT_NOREF_PV(iCpuSet); RT_NOREF_PV(iGipCpu); 134 135 # ifndef IN_RC 135 136 AssertMsgFailed(("idApic=%#x iCpuSet=%#x iGipCpu=%#x\n", idApic, iCpuSet, iGipCpu)); -
trunk/src/VBox/Runtime/generic/critsect-generic.cpp
r62477 r62556 72 72 AssertReturn(!(fFlags & ~(RTCRITSECT_FLAGS_NO_NESTING | RTCRITSECT_FLAGS_NO_LOCK_VAL | RTCRITSECT_FLAGS_BOOTSTRAP_HACK | RTCRITSECT_FLAGS_NOP)), 73 73 VERR_INVALID_PARAMETER); 74 RT_NOREF_PV(hClass); RT_NOREF_PV(uSubClass); RT_NOREF_PV(pszNameFmt); 74 75 75 76 /* … … 143 144 return RTLockValidatorRecExclSetSubClass(pCritSect->pValidatorRec, uSubClass); 144 145 # else 146 RT_NOREF_PV(pCritSect); RT_NOREF_PV(uSubClass); 145 147 return RTLOCKVAL_SUB_CLASS_INVALID; 146 148 # endif … … 158 160 Assert(!(pCritSect->fFlags & RTCRITSECT_FLAGS_RING0)); 159 161 #endif 162 RT_NOREF_PV(pSrcPos); 160 163 161 164 /* … … 238 241 Assert(!(pCritSect->fFlags & RTCRITSECT_FLAGS_RING0)); 239 242 #endif 243 RT_NOREF_PV(pSrcPos); 240 244 241 245 /* -
trunk/src/VBox/Runtime/generic/critsectrw-generic.cpp
r62477 r62556 94 94 | RTCRITSECT_FLAGS_NOP )), 95 95 VERR_INVALID_PARAMETER); 96 RT_NOREF_PV(hClass); RT_NOREF_PV(uSubClass); RT_NOREF_PV(pszNameFmt); 97 96 98 97 99 /* … … 206 208 Assert(!(pThis->fFlags & RTCRITSECT_FLAGS_RING0)); 207 209 #endif 210 RT_NOREF_PV(pSrcPos); 208 211 209 212 #ifdef RTCRITSECTRW_STRICT … … 546 549 Assert(!(pThis->fFlags & RTCRITSECT_FLAGS_RING0)); 547 550 #endif 551 RT_NOREF_PV(pSrcPos); 548 552 549 553 #ifdef RTCRITSECTRW_STRICT
Note:
See TracChangeset
for help on using the changeset viewer.