|
|
|
|
|
by jacquesm
5797 days ago
|
|
An active file descriptor is a filedescriptor that you want to read from that has data available and one that you want to write to that has buffer space available. To put it in another way, if you were to use blocking IO then an operation on an active descriptor would not block. Of course poll and epoll are all about asynchronous IO (so non-blocking by definition) but that's a good way to describe the difference. Zed's 'superpoll' is precisely what you suggest. |
|
Zed's 'superpoll' is precisely what you suggest.
Facepalm. Thanks, I mysteriously missed that part of the article.