Changeset 25704 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Jan 10, 2010 8:12:30 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56439
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/semevent-win.cpp
r25685 r25704 89 89 RTLockValidatorRecSharedInit(&pThis->Signallers, 90 90 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 91 "RTSemEvent", pThis, true /*fSignaller*/, true);91 pThis, true /*fSignaller*/, true /*fEnabled*/, "RTSemEvent"); 92 92 pThis->fEverHadSignallers = false; 93 93 #endif -
trunk/src/VBox/Runtime/r3/win/semeventmulti-win.cpp
r25685 r25704 92 92 RTLockValidatorRecSharedInit(&pThis->Signallers, 93 93 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY, 94 "RTSemEvent", pThis, true /*fSignaller*/, true);94 pThis, true /*fSignaller*/, true /*fEnabled*/, "RTSemEvent"); 95 95 pThis->fEverHadSignallers = false; 96 96 #endif -
trunk/src/VBox/Runtime/r3/win/semmutex-win.cpp
r25685 r25704 93 93 pThis->cRecursions = 0; 94 94 #ifdef RTSEMMUTEX_STRICT 95 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemMutex", pThis, true); 95 RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, pThis, 96 true /*fEnabled*/, "RTSemMutex"); 96 97 #endif 97 98 *pMutexSem = pThis;
Note:
See TracChangeset
for help on using the changeset viewer.