Changeset 25682 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Jan 7, 2010 3:23:30 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56400
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/semevent-win.cpp
r25659 r25682 88 88 #ifdef RTSEMEVENT_STRICT 89 89 RTLockValidatorRecSharedInit(&pThis->Signallers, 90 NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_ANY,90 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 91 91 "RTSemEvent", pThis, true /*fSignaller*/); 92 92 pThis->fEverHadSignallers = false; -
trunk/src/VBox/Runtime/r3/win/semeventmulti-win.cpp
r25659 r25682 91 91 #ifdef RTSEMEVENT_STRICT 92 92 RTLockValidatorRecSharedInit(&pThis->Signallers, 93 NIL_RTLOCKVAL IDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_ANY,93 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 94 94 "RTSemEvent", pThis, true /*fSignaller*/); 95 95 pThis->fEverHadSignallers = false; -
trunk/src/VBox/Runtime/r3/win/semmutex-win.cpp
r25658 r25682 93 93 pThis->cRecursions = 0; 94 94 #ifdef RTSEMMUTEX_STRICT 95 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALIDATORCLASS, RTLOCKVALIDATOR_SUB_CLASS_NONE, "RTSemMutex", pThis);95 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemMutex", pThis); 96 96 #endif 97 97 *pMutexSem = pThis;
Note:
See TracChangeset
for help on using the changeset viewer.