| 419 | |
| 420 | public: |
| 421 | inline TSelectPoller() |
| 422 | : Begin_(nullptr) |
| 423 | , End_(nullptr) |
| 424 | { |
| 425 | SocketPair(Signal_); |
| 426 | SetNonBlock(WaitSock()); |
| 427 | SetNonBlock(SigSock()); |
| 428 | } |
| 429 | |
| 430 | inline ~TSelectPoller() { |
| 431 | closesocket(Signal_[0]); |
nothing calls this directly
no test coverage detected