Tagged Questions
8
votes
3answers
10k 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 terminate the ...
2
votes
1answer
817 views
C++: Continue execution after SIGINT
Okay, I am writing a program that is doing some pretty heavy analysis and I would like to be able to stop it quickly.
I added signal(SIGINT, terminate); to the beginning of main and defined terminate ...