Changeset 25638 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Jan 4, 2010 4:08:04 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56338
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/semevent-win.cpp
r25381 r25638 124 124 } 125 125 126 127 RTDECL(void) RTSemEventSetSignaller(RTSEMEVENT hEventSem, RTTHREAD hThread) 128 { 129 /** @todo implement RTSemEventSetSignaller and friends for NT. */ 130 } 131 132 133 RTDECL(void) RTSemEventAddSignaller(RTSEMEVENT hEventSem, RTTHREAD hThread) 134 { 135 136 } 137 138 139 RTDECL(void) RTSemEventRemoverSignaller(RTSEMEVENT hEventSem, RTTHREAD hThread) 140 { 141 142 } 143 -
trunk/src/VBox/Runtime/r3/win/semmutex-win.cpp
r25628 r25638 182 182 #ifdef RTSEMMUTEX_STRICT 183 183 hThreadSelf = RTThreadSelfAutoAdopt(); 184 int rc9 = RTLockValidatorRecExclCheckOrderAndBlocking(&pThis->ValidatorRec, hThreadSelf, pSrcPos, true, RTTHREADSTATE_MUTEX); 184 int rc9 = RTLockValidatorRecExclCheckOrderAndBlocking(&pThis->ValidatorRec, hThreadSelf, pSrcPos, true, 185 RTTHREADSTATE_MUTEX, true); 185 186 if (RT_FAILURE(rc9)) 186 187 return rc9; 187 188 #else 188 189 hThreadSelf = RTThreadSelf(); 189 RTThreadBlocking(hThreadSelf, RTTHREADSTATE_MUTEX );190 RTThreadBlocking(hThreadSelf, RTTHREADSTATE_MUTEX, true); 190 191 #endif 191 192 }
Note:
See TracChangeset
for help on using the changeset viewer.