vote up 0 vote down star

This seems like it ought to be simple, but I've tried both
try {} catch (...) {} C++ exception handling and
__try {} __finally {} structured exception handling (SEH)
and neither one will catch the exception that happens when you Control-C the application.

I didn't really expect C++ exception handling to do this, since the Control-C is a system-type signal and not caused by a C++ throw(), but I tried it anyway when SEH didn't work.

If I run under a debugger, it shows that Control-C raises a first-chance exception, but when it's rethrown, my handler is never invoked.

flag
It's not an exception, its called an interupt. – Daniel A. White Jul 19 at 23:36
Doh - interrupt. My mistake. – Daniel A. White Jul 19 at 23:37
@Daniel Yeah, technically Microsoft should call it Structured INTERRUPT Handling, but they don't. Po-tAY-to Po-tAH-to. – Die in Sente Jul 20 at 15:01

1 Answer

vote up 1 vote down check

Here is how to handle an interrupt in Win32.

http://msdn.microsoft.com/en-us/library/ms686016%28VS.85%29.aspx

link|flag
Thanks, Daniel. I had spent at least an hour searching MSDN with different search engines without finding this. – Die in Sente Jul 20 at 15:29

Your Answer

Get an OpenID
or

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