Changeset 25628 in vbox for trunk/src/VBox/Runtime/r3/posix/semmutex-posix.cpp
- Timestamp:
- Jan 3, 2010 4:28:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/semmutex-posix.cpp
r25624 r25628 353 353 */ 354 354 RTSEMMUTEXINTERNAL *pThis = hMutex; 355 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);356 AssertReturn(pThis->u32Magic == RTSEMMUTEX_MAGIC, VERR_INVALID_HANDLE);355 AssertPtrReturn(pThis, false); 356 AssertReturn(pThis->u32Magic == RTSEMMUTEX_MAGIC, false); 357 357 358 358 return pThis->Owner != (pthread_t)-1;
Note:
See TracChangeset
for help on using the changeset viewer.