Changeset 90789 in vbox for trunk/src/VBox/Runtime/r0drv/solaris/semeventwait-r0drv-solaris.h
- Timestamp:
- Aug 23, 2021 10:27:29 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/semeventwait-r0drv-solaris.h
r82968 r90789 201 201 kthread_t *pThread = pWait->pThread; 202 202 kmutex_t *pMtx = (kmutex_t *)ASMAtomicReadPtr(&pWait->pvMtx); 203 if ( VALID_PTR(pMtx))203 if (RT_VALID_PTR(pMtx)) 204 204 { 205 205 /* Enter the mutex here to make sure the thread has gone to sleep … … 234 234 kthread_t *pThread = pWait->pThread; 235 235 kmutex_t *pMtx = (kmutex_t *)ASMAtomicReadPtr((void * volatile *)&pWait->pvMtx); 236 if ( VALID_PTR(pMtx))236 if (RT_VALID_PTR(pMtx)) 237 237 { 238 238 /* Enter the mutex here to make sure the thread has gone to sleep
Note:
See TracChangeset
for help on using the changeset viewer.