Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
1
vote
5answers
2k 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
180 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 ...