2
votes
5answers
545 views
Removing created temp files in unexpected bash exit
I am creating temporary files from a bash script. I am deleting them at the end of the processing, but since the script is running for quite a long time, if I kill it or simply CTR …
0
votes
1answer
639 views
How to catch Ctrl+C key event with Qt when Ctrl is released before ‘C’?
I would like to call some custom copy code when the user releases Ctrl+C. When 'C' is released before Ctrl, Qt sends a key event that matches with QKeySequence::Copy. When Ctrl is …
0
votes
2answers
150 views
C# - Overwrite Ctrl+C control
Im thinking to create a simple app to store what I have copied using Ctrl+C. Now I have Googled some interesting code: (I will rather post link to it as its huge)
http://www.prile …
0
votes
0answers
24 views
Run arbitrary subprocesses on Windows and still terminate cleanly?
I have an application A that I would like to be able to invoke arbitrary other processes as specified by a user in a configuration file.
Batch script B is one such process a user …
0
votes
1answer
204 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 …
2
votes
4answers
479 views
Java: How could I “intercept” Ctrl+C in a CLI application?
Hello!
How could I "intercept" Ctrl+C (which normally would kill the process)
in a CLI (command line interface) Java application?
Does a multi-platform solution exist (Linux, Sol …
1
vote
2answers
1k views
Can I send a ctrl-C (SIGINT) to an application on Windows?
I have (in the past) written cross-platform (Windows/Unix) applications which, when started from the command line, handled a user-typed Ctrl-C combination in the same way (i.e. to …
4
votes
1answer
427 views
How do I handle Ctrl+C in a Delphi console application?
Are there best practices and code snippets available which show how I can handle Ctrl+C in a Delphi console application?
I have found some articles which give some information abo …
7
votes
2answers
2k views
How do I trap ctrl-c in a C# console app
I would like to be able to trap ctrl-c in a C# console application so that I can carry out some cleanups before exiting. What is the best way of doing this?
7
votes
3answers
352 views
What exactly is the effect of Ctrl-C on C++ Win32 console applications?
Is it possible to handle this event in some way?
What happens in terms of stack unwinding and deallocation of static/global objects?
3
votes
1answer
434 views
How to send interrupt key sequence to a Java Process?
I've got a handle to a Java Process instance and its associated streams. It's a console program. I'd like to simulate a break sequence. On Windows this is Ctrl-C. Is this possible …
1
vote
2answers
372 views
How can I terminate a process started from an Ant task if the script is cancelled?
I've created an Ant task to compile VB6 applications.
After some preprocessing of the source files, I start VB6.exe with the appropriate parameters using
Process p = Runtime.get …
1
vote
4answers
296 views
Debugging a segmentation fault when I do ctrl c
I get a segmentation fault when I cancel my program. I am using gdb for debugging, the problem is that when I press Ctrl-C while I am debugging gdb does not cancel the program and …
1
vote
2answers
354 views
Ignoring ctrl-c
I'm trying to write a shell and I'm at the point where I want to ignore ctrl-c.
I currently have my program ignoring SIGINT and printing a new line when the signal comes, but how …
1
vote
4answers
638 views
Equivalent of ctrl c in command to cancel a program
Hello,
I am running a long program in a remote machine, and I want to stop it, but my problem is that if I use the kill command then the program will exit without saving results. …
