Changeset 25618 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Jan 2, 2010 12:00:33 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56309
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/semmutex-win.cpp
r25614 r25618 159 159 #ifdef RTSEMMUTEX_STRICT 160 160 hThreadSelf = RTThreadSelfAutoAdopt(); 161 int rc9 = RTLockValidatorRecExclCheckOrderAndBlocking(&pThis->ValidatorRec, hThreadSelf, pSrcPos, true );161 int rc9 = RTLockValidatorRecExclCheckOrderAndBlocking(&pThis->ValidatorRec, hThreadSelf, pSrcPos, true, RTTHREADSTATE_MUTEX); 162 162 if (RT_FAILURE(rc9)) 163 163 return rc9; 164 164 #else 165 165 hThreadSelf = RTThreadSelf(); 166 #endif167 166 RTThreadBlocking(hThreadSelf, RTTHREADSTATE_MUTEX); 167 #endif 168 168 } 169 169 int rc = WaitForSingleObjectEx(pThis->hMtx,
Note:
See TracChangeset
for help on using the changeset viewer.