Python Forum
signal during multiprocessing.JoinableQueue.join() - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: signal during multiprocessing.JoinableQueue.join() (/thread-20268.html)



signal during multiprocessing.JoinableQueue.join() - Skaperen - Aug-03-2019

if a process is waiting in .join() for some multiprocessing.JoinableQueue() object, what happens if a signal arrives for a signal registered with signal.signal()? will the signal handler run then the process (only one thread) goes back to waiting in .join()?