Changeset 25704 in vbox for trunk/src/VBox/Runtime/r3/linux
- Timestamp:
- Jan 10, 2010 8:12: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
r25685 r25704 131 131 RTLockValidatorRecSharedInit(&pThis->Signallers, 132 132 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 133 "RTSemEvent", pThis, true /*fSignaller*/, true);133 pThis, true /*fSignaller*/, true /*fEnabled*/, "RTSemEvent"); 134 134 pThis->fEverHadSignallers = false; 135 135 #endif -
trunk/src/VBox/Runtime/r3/linux/semeventmulti-linux.cpp
r25688 r25704 132 132 RTLockValidatorRecSharedInit(&pThis->Signallers, 133 133 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 134 "RTSemEventMulti", pThis, true /*fSignaller*/, true);134 pThis, true /*fSignaller*/, true /*fEnabled*/, "RTSemEvent"); 135 135 pThis->fEverHadSignallers = false; 136 136 #endif -
trunk/src/VBox/Runtime/r3/linux/semmutex-linux.cpp
r25685 r25704 120 120 pThis->cNesting = 0; 121 121 #ifdef RTSEMMUTEX_STRICT 122 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemMutex", pThis, true); 122 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, pThis, 123 true /*fEnabled*/, "RTSemMutex"); 123 124 #endif 124 125
Note:
See TracChangeset
for help on using the changeset viewer.