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
Solution 1:
Windows doesn't have the unix signals IPC mechanism.
I would look at sending a CTRL-C to the gdb process.
Post a Comment for "Can I Send Sigint To A Python Subprocess On Windows?"