| 101 | } |
| 102 | |
| 103 | int PollT(TCont* cont, SOCKET fd, int what, TDuration timeout) noexcept { |
| 104 | return PollD(cont, fd, what, timeout.ToDeadLine()); |
| 105 | } |
| 106 | |
| 107 | int PollI(TCont* cont, SOCKET fd, int what) noexcept { |
| 108 | return PollD(cont, fd, what, TInstant::Max()); |
no test coverage detected