| 252 | public: |
| 253 | #ifdef HAVE_POLL |
| 254 | Select() |
| 255 | : slct_time(0), slct_count(0), slct_poll(*getDefaultMemoryPool()), |
| 256 | slct_ready(*getDefaultMemoryPool()) |
| 257 | { } |
| 258 | |
| 259 | explicit Select(MemoryPool& pool) |
| 260 | : slct_time(0), slct_count(0), slct_poll(pool), slct_ready(pool) |
nothing calls this directly
no test coverage detected