SIGCHLD handling in multi-threaded Python applications
Summary The issue revolves around SIGCHLD signal handling in a multi-threaded Python application. The application uses the signal module to catch the SIGCHLD signal, which is sent when a child process terminates. However, the signal handler is not being called on the main thread as expected, but rather only when the thread that started the … Read more