Changeset 25682 in vbox for trunk/src/VBox/Runtime/r3/linux
- Timestamp:
- Jan 7, 2010 3:23:30 PM (15 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
r25651 r25682 130 130 #ifdef RTSEMEVENT_STRICT 131 131 RTLockValidatorRecSharedInit(&pThis->Signallers, 132 NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_ANY,132 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 133 133 "RTSemEvent", pThis, true /*fSignaller*/); 134 134 pThis->fEverHadSignallers = false; -
trunk/src/VBox/Runtime/r3/linux/semeventmulti-linux.cpp
r25649 r25682 131 131 #ifdef RTSEMEVENTMULTI_STRICT 132 132 RTLockValidatorRecSharedInit(&pThis->Signallers, 133 NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_ANY,133 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 134 134 "RTSemEventMulti", pThis, true /*fSignaller*/); 135 135 pThis->fEverHadSignallers = false; -
trunk/src/VBox/Runtime/r3/linux/semmutex-linux.cpp
r25652 r25682 120 120 pThis->cNesting = 0; 121 121 #ifdef RTSEMMUTEX_STRICT 122 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_NONE, "RTSemMutex", pThis);122 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemMutex", pThis); 123 123 #endif 124 124
Note:
See TracChangeset
for help on using the changeset viewer.