Changeset 25682 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Jan 7, 2010 3:23:30 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/posix
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/semevent-posix.cpp
r25661 r25682 133 133 #ifdef RTSEMEVENT_STRICT 134 134 RTLockValidatorRecSharedInit(&pThis->Signallers, 135 NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_ANY,135 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 136 136 "RTSemEvent", pThis, true /*fSignaller*/); 137 137 pThis->fEverHadSignallers = false; -
trunk/src/VBox/Runtime/r3/posix/semeventmulti-posix.cpp
r25661 r25682 123 123 #ifdef RTSEMEVENTMULTI_STRICT 124 124 RTLockValidatorRecSharedInit(&pThis->Signallers, 125 NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_ANY,125 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 126 126 "RTSemEventMulti", pThis, true /*fSignaller*/); 127 127 pThis->fEverHadSignallers = false; -
trunk/src/VBox/Runtime/r3/posix/semmutex-posix.cpp
r25638 r25682 102 102 pThis->u32Magic = RTSEMMUTEX_MAGIC; 103 103 #ifdef RTSEMMUTEX_STRICT 104 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_NONE, "RTSemMutex", pThis);104 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemMutex", pThis); 105 105 #endif 106 106 -
trunk/src/VBox/Runtime/r3/posix/semrw-posix.cpp
r25638 r25682 126 126 pThis->Writer = (pthread_t)-1; 127 127 #ifdef RTSEMRW_STRICT 128 RTLockValidatorRecExclInit(&pThis->ValidatorWrite, NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_NONE, "RTSemRW", pThis);129 RTLockValidatorRecSharedInit(&pThis->ValidatorRead, NIL_RTLOCKVALIDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_NONE, "RTSemRW", pThis, false /*fSignaller*/);128 RTLockValidatorRecExclInit(&pThis->ValidatorWrite, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemRW", pThis); 129 RTLockValidatorRecSharedInit(&pThis->ValidatorRead, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemRW", pThis, false /*fSignaller*/); 130 130 RTLockValidatorRecMakeSiblings(&pThis->ValidatorWrite.Core, &pThis->ValidatorRead.Core); 131 131 #endif
Note:
See TracChangeset
for help on using the changeset viewer.