| 87 | } |
| 88 | |
| 89 | int SelectT(TCont* cont, SOCKET fds[], int what[], size_t nfds, SOCKET* outfd, TDuration timeout) noexcept { |
| 90 | return SelectD(cont, fds, what, nfds, outfd, timeout.ToDeadLine()); |
| 91 | } |
| 92 | |
| 93 | int SelectI(TCont* cont, SOCKET fds[], int what[], size_t nfds, SOCKET* outfd) { |
| 94 | return SelectD(cont, fds, what, nfds, outfd, TInstant::Max()); |
nothing calls this directly
no test coverage detected