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

/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dsemmutex-r0drv-darwin.cpp173 wait_result_t rcWait; local
175 rcWait = lck_spin_sleep(pThis->pSpinlock, LCK_SLEEP_DEFAULT, (event_t)pThis, fInterruptible);
182 rcWait = lck_spin_sleep_deadline(pThis->pSpinlock, LCK_SLEEP_DEFAULT,
189 switch (rcWait)
228 AssertMsgFailed(("rcWait=%d\n", rcWait));
/vbox/src/VBox/Runtime/generic/
H A Dsemrw-generic.cpp377 int rcWait; local
379 rcWait = rc = RTSemEventMultiWaitNoResume(pThis->ReadEvent, cMillies);
381 rcWait = rc = RTSemEventMultiWait(pThis->ReadEvent, cMillies);
427 if (rcWait == VERR_TIMEOUT)
666 int rcWait; local
668 rcWait = rc = RTSemEventWaitNoResume(pThis->WriteEvent, cMillies);
670 rcWait = rc = RTSemEventWait(pThis->WriteEvent, cMillies);
722 if (rcWait == VERR_TIMEOUT)
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceControlSession.cpp1194 int rcWait; local
1202 rcWait = RTProcWaitNoResume(pThread->hProcess, RTPROCWAIT_FLAGS_NOBLOCK,
1204 if (RT_UNLIKELY(rcWait == VERR_INTERRUPTED))
1206 else if ( rcWait == VINF_SUCCESS
1207 || rcWait == VERR_PROCESS_NOT_FOUND)
1213 AssertMsgBreak(rcWait == VERR_PROCESS_RUNNING,
1214 ("Got unexpected rc=%Rrc while waiting for session process termination\n", rcWait));
1262 uSessionID, rcWait,
1298 if (RT_SUCCESS(rcWait))

Completed in 40 milliseconds