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 rpurdie
Recipients rpurdie
Date 2022-03-28.09:48:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1648460882.85.0.215889211593.issue47139@roundup.psfhosted.org>
In-reply-to
Content
I've been struggling to get signal.pthread_sigmask to do what I expected it to do from the documentation. Having looked at the core python code handling signals I now (think?!) I understand what is happening. It might be possible for python to improve the behaviour, or it might just be something to document, I'm not sure but I though I'd mention it.

I'd added pthread_sigmask(SIG_BLOCK, (SIGTERM,)) and pthread_sigmask(SIG_UNBLOCK, (SIGTERM,)) calls around a critical section I wanted to protect from the SIGTERM signal. I was still seeing SIGTERM inside that section. Using SIGMASK to restore the mask instead of SIG_UNBLOCK behaves the same.

What I hadn't realised is that firstly python defers signals to a convenient point and secondly that signals are processed in the main thread regardless of the thread they arrived in. This means that I can see SIGTERM arrive in my critical section as one of my other threads created in the background by the core python libs helpfully handles it.  This makes SIG_BLOCK rather ineffective in any threaded code.

To work around it, I can add my own handlers and have them track whether a signal arrived, then handle any signals after my critical section by re-raising them. It is possible python itself could defer processing signals masked with SIG_BLOCK until they're unblocked. Alternatively, a note in the documentation warning of the pitfalls here might be helpful to save someone else from wondering what is going on!
History
Date User Action Args
2022-03-28 09:48:02rpurdiesetrecipients: + rpurdie
2022-03-28 09:48:02rpurdiesetmessageid: <1648460882.85.0.215889211593.issue47139@roundup.psfhosted.org>
2022-03-28 09:48:02rpurdielinkissue47139 messages
2022-03-28 09:48:02rpurdiecreate