Changeset 63417 in vbox for trunk/src/VBox/Runtime/r3/linux
- Timestamp:
- Aug 13, 2016 4:42:19 PM (8 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/linux
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/semevent-linux.cpp
r62477 r63417 160 160 } 161 161 pThis->fEverHadSignallers = false; 162 #else 163 RT_NOREF(hClass, pszNameFmt); 162 164 #endif 163 165 … … 240 242 static int rtSemEventWait(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies, bool fAutoResume) 241 243 { 244 #ifdef RTSEMEVENT_STRICT 242 245 PCRTLOCKVALSRCPOS pSrcPos = NULL; 246 #endif 243 247 244 248 /* … … 376 380 ASMAtomicWriteBool(&pThis->fEverHadSignallers, true); 377 381 RTLockValidatorRecSharedResetOwner(&pThis->Signallers, hThread, NULL); 382 #else 383 RT_NOREF(hEventSem, hThread); 378 384 #endif 379 385 } … … 389 395 ASMAtomicWriteBool(&pThis->fEverHadSignallers, true); 390 396 RTLockValidatorRecSharedAddOwner(&pThis->Signallers, hThread, NULL); 397 #else 398 RT_NOREF(hEventSem, hThread); 391 399 #endif 392 400 } … … 401 409 402 410 RTLockValidatorRecSharedRemoveOwner(&pThis->Signallers, hThread); 411 #else 412 RT_NOREF(hEventSem, hThread); 403 413 #endif 404 414 } -
trunk/src/VBox/Runtime/r3/linux/semeventmulti-linux.cpp
r62477 r63417 153 153 } 154 154 pThis->fEverHadSignallers = false; 155 #else 156 RT_NOREF(hClass, pszNameFmt); 155 157 #endif 156 158 … … 253 255 PCRTLOCKVALSRCPOS pSrcPos) 254 256 { 257 RT_NOREF(pSrcPos); 258 255 259 /* 256 260 * Validate input. … … 412 416 ASMAtomicWriteBool(&pThis->fEverHadSignallers, true); 413 417 RTLockValidatorRecSharedResetOwner(&pThis->Signallers, hThread, NULL); 418 #else 419 RT_NOREF(hEventMultiSem, hThread); 414 420 #endif 415 421 } … … 425 431 ASMAtomicWriteBool(&pThis->fEverHadSignallers, true); 426 432 RTLockValidatorRecSharedAddOwner(&pThis->Signallers, hThread, NULL); 433 #else 434 RT_NOREF(hEventMultiSem, hThread); 427 435 #endif 428 436 } … … 437 445 438 446 RTLockValidatorRecSharedRemoveOwner(&pThis->Signallers, hThread); 447 #else 448 RT_NOREF(hEventMultiSem, hThread); 439 449 #endif 440 450 } -
trunk/src/VBox/Runtime/r3/linux/semmutex-linux.cpp
r62477 r63417 138 138 va_end(va); 139 139 } 140 #else 141 RT_NOREF(hClass, uSubClass, pszNameFmt); 140 142 #endif 141 143 … … 196 198 return RTLockValidatorRecExclSetSubClass(&pThis->ValidatorRec, uSubClass); 197 199 #else 200 RT_NOREF(hMutexSem, uSubClass); 198 201 return RTLOCKVAL_SUB_CLASS_INVALID; 199 202 #endif … … 203 206 DECL_FORCE_INLINE(int) rtSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, bool fAutoResume, PCRTLOCKVALSRCPOS pSrcPos) 204 207 { 208 RT_NOREF(pSrcPos); 209 205 210 /* 206 211 * Validate input.
Note:
See TracChangeset
for help on using the changeset viewer.