Changeset 5358 in vbox for trunk/src/VBox/Runtime/r0drv/solaris
- Timestamp:
- Oct 17, 2007 1:51:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/semeventmulti-r0drv-solaris.c
r5355 r5358 162 162 else 163 163 { 164 ASMAtomicIncU32(&p EventMultiInt->cWaiters);164 ASMAtomicIncU32(&pThis->cWaiters); 165 165 166 166 /* … … 173 173 timeout += cTicks; 174 174 if (fInterruptible) 175 rc = cv_timedwait_sig(&p EventMultiInt->Cnd, &pEventMultiInt->Mtx, timeout);175 rc = cv_timedwait_sig(&pThis->Cnd, &pThis->Mtx, timeout); 176 176 else 177 rc = cv_timedwait(&p EventMultiInt->Cnd, &pEventMultiInt->Mtx, timeout);177 rc = cv_timedwait(&pThis->Cnd, &pThis->Mtx, timeout); 178 178 } 179 179 else 180 180 { 181 181 if (fInterruptible) 182 rc = cv_wait_sig(&p EventMultiInt->Cnd, &pEventMultiInt->Mtx);182 rc = cv_wait_sig(&pThis->Cnd, &pThis->Mtx); 183 183 else 184 184 { 185 cv_wait(&p EventMultiInt->Cnd, &pEventMultiInt->Mtx);185 cv_wait(&pThis->Cnd, &pThis->Mtx); 186 186 rc = 1; 187 187 }
Note:
See TracChangeset
for help on using the changeset viewer.