Changeset 205 in vbox for trunk/src/VBox/Runtime/r0drv/darwin/semaphore-r0drv-darwin.cpp
- Timestamp:
- Jan 21, 2007 10:30:25 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/semaphore-r0drv-darwin.cpp
r201 r205 91 91 { 92 92 Assert(sizeof(RTSEMEVENTINTERNAL) > sizeof(void *)); 93 AssertPtrReturn( VALID_PTR(pEventSem), VERR_INVALID_POINTER);93 AssertPtrReturn(pEventSem, VERR_INVALID_POINTER); 94 94 95 95 PRTSEMEVENTINTERNAL pEventInt = (PRTSEMEVENTINTERNAL)RTMemAlloc(sizeof(*pEventInt)); … … 406 406 { 407 407 AssertCompile(sizeof(RTSEMFASTMUTEXINTERNAL) > sizeof(void *)); 408 AssertPtrReturn( VALID_PTR(pMutexSem), VERR_INVALID_POINTER);408 AssertPtrReturn(pMutexSem, VERR_INVALID_POINTER); 409 409 410 410 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)RTMemAlloc(sizeof(*pFastInt));
Note:
See TracChangeset
for help on using the changeset viewer.