Tagged Questions

5
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 ...
5
votes
2answers
572 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
122 views

How can I interrupt a blocking method in python?

Usually I can interrupt stuff with Ctrl+C, but sometimes when I'm using threads it doesn't work - example below. Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53) [GCC 4.5.2] on linux2 Type ...
2
votes
3answers
106 views

Why is my threading/multiprocessing python script not exiting properly?

I have a server script that I need to be able to shutdown cleanly. While testing the usual try..except statements I realized that Ctrl-C didn't work the usual way. Normally I'd wrap long running tasks ...
2
votes
1answer
502 views

How can I catch SIGINT in threading python program?

When using threading module and Thread() class, SIGINT (Ctrl+C in console) could not be catched. Why and what can I do? Simple test program: #!/usr/bin/env python import threading def ...
2
votes
1answer
158 views

Signal handler, python

I have a multithreaded program and use the signal.signal(SIGINT,func) to kill all threads when ctrl c is pressed. The question I have is this: I have to call signal.signal(...) from main in python. ...
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 ...
1
vote
1answer
47 views

Interrupting Python raw_input() in a child thread with ^C/KeyboardInterrupt

In a multithreaded Python program, one thread sometimes asks for console input using the built-in raw_input(). I'd like to be able to be able to close the program while at a raw_input prompt by typing ...
1
vote
1answer
66 views

Handling SIGINT in slow system calls

I am very new to Python, so forgive me if this question is very basic. I am trying to handle a keyboard interrupt while accepting data from a socket using select module. So, I have a select.select() ...
0
votes
1answer
107 views

Sending SIGINT (Ctrl-C) to program running in Eclipse Console

I have setup a run configuration in Eclipse and need to send SIGINT (Ctrl-C) to the program. There is cleanup code in the program that runs after SIGINT, so pressing Eclipse's "Terminate" buttons ...
0
votes
2answers
294 views

Saving work after a SIGINT

I have a program which takes a long time to complete. I would like it to be able to catch SIGINT (ctrl-c) and call the self.save_work() method. As it stands, my signal_hander() does not work since ...