Tagged Questions
12
votes
2answers
150 views
What is the difference between Ctrl-C and SIGINT?
I have been debugging a Python program which segfaults after receiving a KeyboardInterrupt exception. This is normally done by pressing Ctrl+c from the shell. To test if a particular code change fixed ...
5
votes
2answers
540 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
120 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 ...
3
votes
3answers
998 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
1answer
457 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
152 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
59 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
63 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
290 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
...