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

/vbox/src/VBox/Runtime/r3/
H A Dsocket.cpp1394 int const fdMax = (int)pThis->hNative + 1; local
1395 AssertReturn(fdMax - 1 == pThis->hNative, VERR_INTERNAL_ERROR_5);
1408 rc = select(fdMax, &fdsetR, NULL, &fdsetE, NULL);
1414 rc = select(fdMax, &fdsetR, NULL, &fdsetE, &timeout);
1439 int const fdMax = (int)pThis->hNative + 1; local
1440 AssertReturn(fdMax - 1 == pThis->hNative, VERR_INTERNAL_ERROR_5);
1463 rc = select(fdMax, &fdsetR, &fdsetW, &fdsetE, NULL);
1469 rc = select(fdMax, &fdsetR, &fdsetW, &fdsetE, &timeout);

Completed in 49 milliseconds