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 Elad Lahav
Recipients Elad Lahav
Date 2020-02-26.19:18:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1582744715.59.0.836949225961.issue39763@roundup.psfhosted.org>
In-reply-to
Content
The attached code causes the child processes to hang on QNX. The hang is caused by the logging module trying to acquire the module lock while in an atfork() handler. In a system where semaphore state is kept in user mode and is thus inherited from the parent on fork() the semaphore may appear to have a value of 0, and thus will never be posted to in the single-threaded child.
I don't know how it works on other systems - may be pure chance.
History
Date User Action Args
2020-02-26 19:18:35Elad Lahavsetrecipients: + Elad Lahav
2020-02-26 19:18:35Elad Lahavsetmessageid: <1582744715.59.0.836949225961.issue39763@roundup.psfhosted.org>
2020-02-26 19:18:35Elad Lahavlinkissue39763 messages
2020-02-26 19:18:35Elad Lahavcreate