Hello,
I am trying to debug an exception handler.
To trigger it I do something dumb like
*reinterpret_cast<char*>(3) = 4; // Will crash
but when Remedy is attached before the crash occurs, it will break on it and won't let me go further.
I want to skip that to end up in the exception handler that I set up using
SetUnhandledExceptionFilter();
Is there a known way to force the execution to continue to the handler ? Or is it a feature that would need to be added in the debugger ?
Cheers
PS: I have a workaround but it is a little bit annoying to use
PS2: The handler is called in the thread that crashed