Y
Hacker News
new
|
ask
|
show
|
jobs
by
bvrmn
644 days ago
It seems epoll could be slower than poll for async/await environments. It requires epoll_ctl (syscall) on each fd state transition. `poll` could wait in a single syscall for a small set of current blocked fds.