Python Forum

Full Version: signal during multiprocessing.JoinableQueue.join()
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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()?