Searched defs:hEvtRead (Results 1 - 3 of 3) sorted by relevance

/vbox/include/iprt/
H A Dcritsect.h392 /** Indicates whether hEvtRead needs resetting. */
423 RTSEMEVENTMULTI hEvtRead; member in struct:RTCRITSECTRW
/vbox/src/VBox/Runtime/generic/
H A Dsemrw-lockless-generic.cpp54 /** Indicates whether hEvtRead needs resetting. */
81 RTSEMEVENTMULTI hEvtRead; member in struct:RTSEMRWINTERNAL
129 int rc = RTSemEventMultiCreate(&pThis->hEvtRead);
171 RTSemEventMultiDestroy(pThis->hEvtRead);
195 RTSEMEVENTMULTI hEvtRead; local
196 ASMAtomicXchgHandle(&pThis->hEvtRead, NIL_RTSEMEVENTMULTI, &hEvtRead);
197 int rc = RTSemEventMultiDestroy(hEvtRead);
349 rc = RTSemEventMultiWaitNoResume(pThis->hEvtRead, cMillies);
351 rc = RTSemEventMultiWait(pThis->hEvtRead, cMillie
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DPDMCritSect.cpp240 AssertCompile(sizeof(SUPSEMEVENTMULTI) == sizeof(pCritSect->Core.hEvtRead));
241 rc = SUPSemEventMultiCreate(pVM->pSession, (PSUPSEMEVENT)&pCritSect->Core.hEvtRead);
309 SUPSemEventMultiClose(pVM->pSession, (SUPSEMEVENT)pCritSect->Core.hEvtRead);
582 SUPSEMEVENTMULTI hEvtRead = (SUPSEMEVENTMULTI)pCritSect->Core.hEvtRead; local
583 pCritSect->Core.hEvtRead = NIL_RTSEMEVENTMULTI;
584 AssertCompile(sizeof(hEvtRead) == sizeof(pCritSect->Core.hEvtRead));
587 int rc2 = SUPSemEventMultiClose(pVM->pSession, hEvtRead); AssertRC(rc2);

Completed in 48 milliseconds