Changeset 28551 in vbox
- Timestamp:
- Apr 21, 2010 9:25:35 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/semmutex-r0drv-solaris.c
r28533 r28551 210 210 * Interrupted by some signal. 211 211 */ 212 rc = VERR_INTERRUPTED;212 rc = VERR_INTERRUPTED; 213 213 } 214 214 } … … 276 276 } 277 277 /* 278 * Not a recursion, make sure we don't sneak in when another thread 279 * is being woken up. 278 * Not a recursion, claim the unowned mutex if we're there are no waiters. 280 279 */ 281 280 else if ( pThis->hOwnerThread == NIL_RTNATIVETHREAD … … 351 350 352 351 /* 353 * If there are any waiters, signal them.352 * If there are any waiters, signal one of them. 354 353 */ 355 354 if (pThis->cWaiters > 0)
Note:
See TracChangeset
for help on using the changeset viewer.