This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add support for EVFILT_USER kqueue filter
Type: enhancement Stage: patch review
Components: Library (Lib) Versions: Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: jceel, ned.deily, neologix, vstinner, wg
Priority: normal Keywords: patch

Created on 2015-11-11 11:46 by jceel, last changed 2022-04-11 14:58 by admin.

Files
File name Uploaded Description Edit
0001-Add-support-for-EVFILT_USER-kqueue-filter.patch jceel, 2015-11-11 11:46 review
Messages (4)
msg254485 - (view) Author: Jakub Klama (jceel) * Date: 2015-11-11 11:46
It's useful for doing signaling between threads (especially I/O-bound threads).

Related github pull request: https://github.com/python/cpython/pull/23
msg258208 - (view) Author: Jakub Klama (jceel) * Date: 2016-01-14 18:20
Hey, any news on this? I've created that issue over 2 months ago and it didn't get even commented since then.
msg267558 - (view) Author: William Grzybowski (wg) * Date: 2016-06-06 20:58
I have bumped into this issue as well.

This change would be much appreciate on my end.

What can we do to move the ball forward here?

Thanks!
msg268865 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2016-06-19 19:48
Thanks for contributing the patch, Jakub.  I'm sorry that there's been no action on it; unfortunately, the BSD platforms don't get as much attention here as some others.  I took a cursory look at it and the patch looks pretty good to me and applies/builds cleanly on OS X (even though support for EVFILT_USER is known to not be documented there).  I think it would be good to add a test case to Lib/test/test_kqueue.py.  Any other opinions?
History
Date User Action Args
2022-04-11 14:58:23adminsetgithub: 69788
2016-06-19 19:48:27ned.deilysetnosy: + neologix, ned.deily
messages: + msg268865
2016-06-06 20:58:08wgsetnosy: + wg
messages: + msg267558
2016-01-14 18:33:32SilentGhostsetnosy: + vstinner

stage: patch review
2016-01-14 18:20:55jceelsetmessages: + msg258208
2015-11-11 11:46:08jceelcreate