Message285352
When calling kevent(), selectors.KqueueSelector.select sets the "maxevents" argument to len(self._fd_to_key). So if there are no fds registered, it passes maxevents=0.
It turns out that the kevent() API has a special case behavior for maxevents=0: it returns immediately, ignoring timeout. I have no idea why kevent() works this way, but it's specifically called out in the man page:
The nevents argument determines the size of eventlist. When
nevents is zero, kevent() will return immediately even if there is a
timeout specified unlike select(2).
https://www.freebsd.org/cgi/man.cgi?query=kqueue&sektion=2
It happens that asyncio doesn't run into this because asyncio always has at least one fd registered with its selector, but this causes problems for other users of the selectors module, e.g.:
https://github.com/dabeaz/curio/issues/156
I believe fix would just be to add some code like: "if max_ev == 0: max_ev = 1" to selectors.KqueueSelector.select. |
|
Date |
User |
Action |
Args |
2017-01-12 23:35:07 | njs | set | recipients:
+ njs |
2017-01-12 23:35:07 | njs | set | messageid: <1484264107.13.0.0489042381572.issue29255@psf.upfronthosting.co.za> |
2017-01-12 23:35:06 | njs | link | issue29255 messages |
2017-01-12 23:35:04 | njs | create | |
|