| 96 | |
| 97 | |
| 98 | int PollD(TCont* cont, SOCKET fd, int what, TInstant deadline) noexcept { |
| 99 | TFdEvent event(cont, fd, (ui16)what, deadline); |
| 100 | return ExecuteEvent(&event); |
| 101 | } |
| 102 | |
| 103 | int PollT(TCont* cont, SOCKET fd, int what, TDuration timeout) noexcept { |
| 104 | return PollD(cont, fd, what, timeout.ToDeadLine()); |
no test coverage detected