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 vinay0410
Recipients ned.deily, vinay0410
Date 2019-09-06.03:35:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567740922.84.0.389150609054.issue38035@roundup.psfhosted.org>
In-reply-to
Content
Let's say I have two processes which are accessing a shared resource (let's say shared memory). Now, these two processes will need some kind of synchronisation mechanism, to be able to access the resource properly, and avoid race condition.

Currently, shared semaphores can be shared with child processes, but there is no way of accessing a named shared semaphore by two separate processes.

Although, the semaphore created by default is a named semaphore, and has the potential to be accessed by multiple processes, but because of the flags, it can't be opened by any other process.

This is a feature request, and not a bug, therefore I have selected type as enhancement.
History
Date User Action Args
2019-09-06 03:35:22vinay0410setrecipients: + vinay0410, ned.deily
2019-09-06 03:35:22vinay0410setmessageid: <1567740922.84.0.389150609054.issue38035@roundup.psfhosted.org>
2019-09-06 03:35:22vinay0410linkissue38035 messages
2019-09-06 03:35:22vinay0410create