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.

Author christian.heimes
Recipients christian.heimes
Date 2020-06-17.10:22:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592389368.35.0.695966020763.issue41001@roundup.psfhosted.org>
In-reply-to
Content
eventfd is a Linux syscall that returns a file descriptor for event/notify systems. I propse to add a simple eventfd(initval, flags) function that is a wrapper around glibc's eventfd abstraction layer. High level notify and semaphores can then be implemented in pure Python.

See https://man7.org/linux/man-pages/man2/eventfd.2.html for more details

See https://bugs.python.org/issue40485 for a use case.
History
Date User Action Args
2020-06-17 10:22:48christian.heimessetrecipients: + christian.heimes
2020-06-17 10:22:48christian.heimessetmessageid: <1592389368.35.0.695966020763.issue41001@roundup.psfhosted.org>
2020-06-17 10:22:48christian.heimeslinkissue41001 messages
2020-06-17 10:22:48christian.heimescreate