Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
154 views

Issue with exceptions being caught by Win32 message dispatcher

This is kinda a very low-level type question, but maybe someone here has some insight... I'm having an issue where unhandled SEH exceptions (such as Access Violations) are seemingly being caught at ...
4
votes
4answers
1k views

Stack unwinding in case of structured exceptions

This question provides more clarity on the problem described here. I did some more investigation and found that the stack unwinding is not happening in the following piece of code: class One { ...
4
votes
1answer
247 views

How do I convert a Win32 exception code to a string?

I'm reluctantly having to deal with Win32 structured exceptions again. I'm trying to generate a string describing an exception. Most of it is straightforward, but I'm stuck on something basic: how can ...
4
votes
4answers
726 views

64bit exceptions in WndProc silently fail

The following code will give a hard fail when run under Windows 7 32bit: void CTestView::OnDraw(CDC* /*pDC*/) { *(int*)0 = 0; // Crash CTestDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); ...
2
votes
0answers
75 views

SEH setup for fibers with exception chain validation (SEHOP) active

I'm working on a native fiber/coroutine implementation – fairly standard, for each fiber, a separate stack is allocated, and to switch contexts, registers are pushed onto the source context stack and ...
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?
4
votes
3answers
386 views

Is there a good way around the problems of structured exception handling (__try __except) with a multi-threaded server?

This article gives a good overview on why structured exception handling is bad. Is there a way to get the robustness of stopping your server from crashing, while getting past the problems mentioned ...
3
votes
3answers
310 views

Is it legal and possible to access the return value in a finally block?

I wish to set a usererror string before leaving a function, depending on the return code and variable in the function. I currently have: Dim RetVal as RetType try ... if ... then RetVal = ...
1
vote
2answers
532 views

How can I catch an invalid fgetpos call as a C++ exception on Windows?

In Visual C++ 2008, I want to "catch" an exception generated as shown here: try { int foo = 20; ::fgetpos(0, (fpos_t*)&foo); } //... Here are adjustments I've made to attempt a ...
1
vote
2answers
1k views

Visual C++ Unmanaged Code: Use /EHa or /EHsc for C++ exceptions?

If I'm creating a new project in unmanaged C++, Visual Studio 2008 or greater, which exception handling model do I want to go with? I understand that /EHa option results in less efficient code, and ...
1
vote
1answer
786 views

SEH, access violation and stack guard page

I've posted a question about validating a pointer's accessibility. The conclusion was either to use IsBadReadPtr to check the pointer, or SEH to catch the exception (and preferably to use neither, and ...
0
votes
1answer
67 views

Azure Role Enviroment not initialising

my 4th year college project presentation is tommorow and my project has suddenly stopped working and i cant fix it. I am using local storage and when i try to initialise the role enviroment, it says ...
0
votes
1answer
40 views

Is it reasonable to use SEH to protect my code from exceptions thrown by third party COM objects

I'm protecting my own C++ code (Windows x86) from exceptions in a third party COM object and logging those exceptions using the following SEH pseudocode. __try { hr = m_ComObj->SomeFunc(); } ...
0
votes
0answers
179 views

How to throw EXCEPTION_FLT_INEXACT_RESULT

It's a little strange problem, but I need to throw EXCEPTION_FLT_INEXACT_RESULT in C++. RaiseException not suitable. Can you suggest anything? Thanks. I have code like that int _tmain(int argc, ...
0
votes
1answer
219 views

Mixing Win32 SEH with heap-allocated stack frames

Is there a way to escape the "one big stack" model of Win32 without crippling SEH? I'd like to be able to allocate stack frames on the heap, as a way to implement coroutines. However, my code is ...