The structured-exception tag has no wiki summary.
1
vote
3answers
167 views
How can I handle an access violation in Visual Studio C++?
Usually an access violation terminates the program and I cannot catch a Win32 exception using try and catch. Is there a way I can keep my program running, even in case of an access violation? ...
4
votes
1answer
147 views
Mapping external error codes to std::error_condition
I'm looking at modifying the MS structured exception-to-exception mapping code we have to use the new C++11 error_code/error_condition/exception mechanisim.
My understanding is that the general ...
1
vote
1answer
127 views
The 'get' equivalent of _set_se_translator?
I need to translate structured exceptions manually, using the current translator.
How do I 'get' the value someone has set by _set_se_translator?
-1
votes
1answer
74 views
How to get the benefits of /EHa with /EHsc, on a particular function?
If I know that a particular extern "C" function in my program (say, RaiseException) is the only function that raises SEH exceptions, and I want them converted to C++ exceptions, is there any way for ...
18
votes
1answer
890 views
Why can't 64-bit Windows unwind user-kernel-user exceptions?
Why can't 64-bit Windows unwind the stack during an exception, if the stack crosses the kernel boundary - when 32-bit Windows can?
The context of this entire question comes from:
The case of the ...
0
votes
1answer
336 views
Structured Exception Handler (SEH) does not catch heap corruption
I'm writing small utility (VC 2010, no clr) that does one simple task (rasterizing) using 3rd party library. Later utility will be used by bigger application. Sometimes the utility crashes because of ...
5
votes
3answers
1k views
intermixing c++ exception handling and SEH (windows)
I have a function in which I call getaddrinfo() to get an sockaddr* which targets memory is allocated by the system.
As many may know, you need to call freeaddrinfo() to free the memory allocated by ...
0
votes
2answers
516 views
SEH error reporting
I have a Visual Studio 2008 C++ program where the program is wrapped in a __try/__except block to capture any SEH exceptions. The exception filter creates an error log and gives the user detailed ...
2
votes
1answer
478 views
Consequences of using Structured Exception Handling (SEH)?
I see Doug Harrison has made a good statement of what is "wrong" with using (i.e. catching) structured exceptions (see question #3). But what other consequences are there? For example, what happens ...
2
votes
1answer
77 views
Structured Exceptions (SE) from standard library calls
I've got code that calls ::fgetpos, which results in a kernel exception that can't be caught (I have option /ehs in my VS 2008 project). But I can't help think that standard library routines should ...
2
votes
1answer
281 views
Ways for an unmanaged Windows process to crash?
I am trying to understand the ways in which an unmanaged user-mode Windows process can "crash" (which is really too much of a catch-all term).
Here are the ways I know of so far:
Unhandled ...
1
vote
2answers
227 views
What exactly is “application-defined” about UnhandledExceptionFilter?
MSDN describes UnhandledExceptionFilter as follows: "An application-defined function that passes unhandled exceptions to the debugger, if the process is being debugged."
But this function is clearly ...
6
votes
5answers
4k views
What should I know about Structured Exceptions (SEH) in C++?
What important points about Structured Exceptions should every C++ developer know?
2
votes
1answer
358 views
How to implement SEH (Structured Exception Handling) in VB6?
Could someone provide some example on implementing SEH in VB6? Everything I've seen so far is in C++
1
vote
2answers
356 views
How do I get the module name that caused a structured exception given a _EXCEPTION_POINTERS struct? (win32 C++)
(Win32 platform c++)
Using __try and __finally, how can I get the module name (And address) of the cause for an exception? I call GetExceptionInformation() but from that I am not sure where this ...
5
votes
5answers
1k views
How can I guarantee catching a EXCEPTION_STACK_OVERFLOW structured exception in C++ under Visual Studio 2005?
Background
I have an application with a Poof-Crash[1]. I'm fairly certain it is due to a blown stack.
The application is Multi-Threaded.
I am compiling with "Enable C++ Exceptions: Yes With SEH ...