Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

Catching Ctrl+C in Java

Is it possible to catch the Ctrl+C signal in a java command-line application? I'd like to clean up some resources before terminating the program.
4
votes
1answer
178 views

Java Swing: Why drag and drop in JFrame will trigger the “Ctrl+C” accelarator?

I create a JFrame and place a JMenuBar into it, a "Copy" menu item with "Ctrl+C" accelarator is added. The complete source code are pasted below. When I do drag and drop within the JFrame, I can see ...
1
vote
1answer
130 views

Linux Bash Script: Command Executed After Control-C

My goal is to open a new terminal window, SSH into a remote machine in that window, prompt the user to continue, and then execute a command. I currently have: gnome-terminal -t "MyWin" -x bash -c ...
0
votes
1answer
33 views

Can I make sure my timer-started threads run to completion if the VM is shutdown by Control-C?

Suppose I make a few calls to the following function: public void StartTimedRuns(){ Timer timer = new Timer(); timer.scheduleAtFixedRate(new TimerTask(){ public void run(){ ...
0
votes
1answer
376 views

Send Control-C to a process running trough Runtime.getRuntime().exec(“su”);

I'm developping an app which needs to run a command as root user so I use: process = Runtime.getRuntime().exec("su"); Then I launch te process with: os = new ...
0
votes
1answer
312 views

sending control+c (SIGINT) to NSPIPE in objective-c

I am trying to terminate an openvpn task, spawned via NSTask. My question: Should I send ctrl+c (SIGINT) to the input NSPipe for my NSTask? inputPipe = [NSPipe pipe]; taskInput = [inputPipe ...
0
votes
1answer
864 views

How to disable Control-C in a WindowsXP Python console program?

I'd like to put my cmd.com window into a mode where Control-C does not generate a SIGINT signal to Python (ActiveState if it matters). I know I can use the signal module to handle SIGINT. The problem ...
0
votes
1answer
130 views

Why does active_record break the behavior of Ruby's trap and how do I work around it?

In the last couple of days, I've been trying to get a solution to an active_record issue that has been plaguing me. Posts on railsforum and stackoverflow have turned up completely dry. The length ...