Searched defs:rcWait (Results 1 - 3 of 3) sorted by relevance
/vbox/src/VBox/Runtime/r0drv/darwin/ |
H A D | semmutex-r0drv-darwin.cpp | 173 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 D | semrw-generic.cpp | 377 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 D | VBoxServiceControlSession.cpp | 1194 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 39 milliseconds