Searched refs:rcWait (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dsemevent-r0drv-darwin.cpp311 wait_result_t rcWait;
313 rcWait = lck_spin_sleep(pThis->pSpinlock, LCK_SLEEP_DEFAULT, (event_t)&Waiter, fInterruptible);
318 rcWait = lck_spin_sleep_deadline(pThis->pSpinlock, LCK_SLEEP_DEFAULT,
327 switch (rcWait)
354 AssertMsgFailed(("rcWait=%d\n", rcWait));
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));
H A Dsemeventmulti-r0drv-darwin.cpp327 wait_result_t rcWait;
329 rcWait = lck_spin_sleep(pThis->pSpinlock, LCK_SLEEP_DEFAULT, (event_t)pThis, fInterruptible);
334 rcWait = lck_spin_sleep_deadline(pThis->pSpinlock, LCK_SLEEP_DEFAULT,
343 switch (rcWait)
370 AssertMsgFailed(("rcWait=%d\n", rcWait));
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibDaemonize.cpp230 int iStatus, rcWait;
240 rcWait = waitpid(pid, &iStatus, 0);
241 while (rcWait == -1 && errno == EINTR);
242 if (rcWait == -1)
/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 258 milliseconds