[issue41001] Provide wrapper for eventfd

2021-08-06 Thread 4-launchpad-kalvdans-no-ip-org
Change by 4-launchpad-kalvdans-no-ip-org : -- nosy: +4-launchpad-kalvdans-no-ip-org ___ Python tracker ___ ___ Python-bugs-list mail

[issue41001] Provide wrapper for eventfd

2020-11-13 Thread Christian Heimes
Christian Heimes added the comment: New changeset cd9fed6afba6f3ad2e7ef723501c739551a95fa8 by Christian Heimes in branch 'master': bpo-41001: Add os.eventfd() (#20930) https://github.com/python/cpython/commit/cd9fed6afba6f3ad2e7ef723501c739551a95fa8 -- _

[issue41001] Provide wrapper for eventfd

2020-11-13 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41001] Provide wrapper for eventfd

2020-06-17 Thread Christian Heimes
Change by Christian Heimes : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue41001] Provide wrapper for eventfd

2020-06-17 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +20109 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20930 ___ Python tracker ___

[issue41001] Provide wrapper for eventfd

2020-06-17 Thread Christian Heimes
New submission from Christian Heimes : 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 impleme