vote up 2 vote down star
1

How do I catch a ctrl-c event in C++?

flag

Console application, windows application, or what? – GMan Oct 29 at 1:40
Which OS Windows, Linux, etc.. – shf301 Oct 29 at 1:41
Well, it's a Qt app, but I'm running it from the console during development. (This is Linux) – Scott Oct 29 at 1:41

5 Answers

vote up 8 vote down check

signal isn't the most reliable way as it differs in implementations. I would recommend using sigaction. Tom's code would now look like this :

#include <signal.h>
#include <stdlib.h>
#include <stdio.h>

void my_handler(sig_t s){
           printf("Caught signal %d\n",s);
           exit(1); 

}

int main(int argc,char** argv)
{

   struct sigaction sigIntHandler;

   sigIntHandler.sa_handler = my_handler;
   sigemptyset(&sigIntHandler.sa_mask);
   sigIntHandler.sa_flags = 0;

   sigaction(SIGINT, &sigIntHandler, NULL);

   while(1);
   return 0;

}
link|flag
I would just like to say thanks for asking this question, as I have an exam on the matter tomorow morning :) – Gab Royer Oct 29 at 1:57
vote up 3 vote down

You have to catch the SIGINT signal (we are talking POSIX right?)

See @Gab Royer´s answer for sigaction.

Example:

#include <signal.h>
#include <stdlib.h>
#include <stdio.h>

void my_handler(sig_t s){
           printf("Caught signal %d\n",s);
           exit(1); 

}

int main(int argc,char** argv)
{
   signal (SIGINT,my_handler);

   while(1);
   return 0;

}
link|flag
Yes, it's POSIX. I forgot to add Linux to the question. – Scott Oct 29 at 1:42
1  
signal() behaves differently, depending if it follows BSD or SysV style. sigaction() is preferable. – asveikau Oct 29 at 1:49
vote up -1 vote down

IMHO it's platform dependent.

link|flag
That's not an opinion, that's fact :) – Anthony Kanago Oct 29 at 1:50
vote up 0 vote down

Yeah, this is a platform dependent question.

If you are writing a console program on POSIX, use the signal API (#include ).

In a WIN32 GUI application you should handle the WM_KEYDOWN message.

link|flag
vote up 1 vote down

For a Windows console app, you want to use SetConsoleCtrlHandler to handle CTRL+C and CTRL+BREAK.

See here for an example.

link|flag

Your Answer

Get an OpenID
or

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