Tagged Questions
5
votes
2answers
544 views
How to stop SIGINT being passed to subprocess in python?
My python script intercepts the SIGINT signal with the signal process module to prevent premature exit, but this signal is passed to a subprocess that I open with Popen. is there some way to prevent ...
3
votes
3answers
1k views
Python: How to prevent subprocesses from receiving CTRL-C / Control-C / SIGINT
I am currently working on a wrapper for a dedicated server running in the shell. The wrapper spawns the server process via subprocess and observes and reacts to its output.
The dedicated server must ...
2
votes
2answers
1k views
Sending SIGINT to a subprocess of python
I've got a python script managing a gdb process on windows, and I need to be able to send a SIGINT to the spawned process in order to halt the target process (managed by gdb)
It appears that there ...