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 like:

void terminate(int param){
   cout << endl << endl << "Exit [N]ow, or [A]fter this url?" << endl;
   std::string answer;
   cin >> answer;
   if(answer[0] == 'n' || answer[0] == 'N'){
      terminateParser();
      exit(1);
   }else if(answer[0] == 'a' || answer[0] == 'A'){
      quitAfterUrl = true;
   }
}

In linux, this worked as I expected it to, that is it waited for user input. But when I try to do the same in windows, it shows the message and exits anyway.

Is there any way to stop SIGINT from closing the program immediately?

Update:

when I tried

BOOL WINAPI handler(DWORD dwCtrlType)
{
  if (CTRL_C_EVENT == dwCtrlType)
  {
    // ask the user
  }
  return FALSE;
}

as Gregory suggested, the program still unceremoniously exited without stopping for user input.

Update 2: I am not exactly sure what did it, but the code is working now. Thank you all for the help.

link|improve this question

Not exactly solving your question - but if you can (and because you wrote for linux initially), you can try to compile with gcc on windows - the behaviour seen might resemble the linux one closer. See the MinGw website. Also - cygwin brings programming even closer to unix than mingw. – laura Jan 9 '10 at 0:37
I have been doing that. – zipcodeman Jan 9 '10 at 0:41
did you call SetConsoleCtrlHandler(handler, TRUE); ? at the beginning of main ? – Gregory Pakosz Jan 9 '10 at 1:11
Yes, the program enters the handler function, runs the cout command, and then skips the cin and exits. – zipcodeman Jan 9 '10 at 1:17
1  
Note that sigaction is much preferred to signal for portable programs, because the latter has different historic behavior on different UNIXes. – ephemient Jan 9 '10 at 7:50
show 5 more comments
feedback

1 Answer

up vote 7 down vote accepted

From MSDN:

Note SIGINT is not supported for any Win32 application, including Windows 98/Me and Windows NT/2000/XP. When a CTRL+C interrupt occurs, Win32 operating systems generate a new thread to specifically handle that interrupt. This can cause a single-thread application such as UNIX, to become multithreaded, resulting in unexpected behavior.

Which means you will have to use preprocessing directive and implement a Windows specific solution.

BOOL WINAPI handler(DWORD dwCtrlType)
{
  if (CTRL_C_EVENT == dwCtrlType)
  {
    // ask the user
  }
  return FALSE;
}

And at the beginning of main you do

SetConsoleCtrlHandler(handler, TRUE);
link|improve this answer
As a note: is his situation allows, compiling with gcc for windows might prevent the rewrite of the solution. – laura Jan 9 '10 at 0:38
I was afraid of that. – zipcodeman Jan 9 '10 at 0:38
@laura - I am already using gcc – zipcodeman Jan 9 '10 at 0:39
I guess this is my best option. – zipcodeman Jan 9 '10 at 0:45
I don't recall any other way and well the note about SIGINT makes it pretty clear – Gregory Pakosz Jan 9 '10 at 1:09
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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