commit | ce036bc2daec3bb407f801f1bab366ee383b76b0 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Jan 29 14:58:02 2018 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Jan 29 15:18:54 2018 +0100 |
tree | 060a93111c1c7cbdc90c89079fa775833d6daba5 | |
parent | ccea35c9800756f867aff8ec2752fa75480ac345 [diff] |
MINOR: polling: make epoll and kqueue not depend on maxfd anymore Maxfd is really only useful to poll() and select(), yet epoll and kqueue reference it almost by mistake : - cloning of the initial FDs (maxsock should be used here) - max polled events, it's maxpollevents which should be used here. Let's fix these places.