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 won't work (they send SIGKILL I think). Typing CTRL-C into the Console also doesn't work.

How do I send SIGINT to a process running inside an Eclipse Console?

(FWIW I am running a Twisted daemon and need Twisted to shutdown correctly, which only occurs on SIGINT)

link|improve this question

80% accept rate
feedback

1 Answer

If you can determine the process with a utility such as ps, you can use kill to send it a SIGINT. The program will likely be a child process of eclipse.

kill -s INT <pid>
link|improve this answer
Right now I use kill -INT `pgrep python` so I don't have to muck around finding pids, but even that is a bit cumbersome for rapid code/debug cycles. – vsekhar Jan 16 at 4:21
You can shorten that to pkill -INT python, if you don't mind all python processes being killed. – jordanm Jan 16 at 15:35
So the point of the question is that kill+pgrep or pkill are blunt instruments (and there are in fact other python processes running that will get clobbered). I'm hoping for a more fine-grained approach, and CTRL-C via Eclipse seems like it should be possible. – vsekhar Jan 16 at 21:16
I understand I am not directly solving your problem, but you can use pkill -f, along with stricter matching to ensure that SIGINT is only sent to the script you want. – jordanm Jan 16 at 21:49
This method will not work on Windows – Uri Apr 30 at 13:37
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.