mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
fix exceptions further
This commit is contained in:
parent
ebf55395f5
commit
cd7c4b9d43
1 changed files with 13 additions and 3 deletions
|
@ -344,9 +344,19 @@ static std::string getInfo(LPEXCEPTION_POINTERS info, Mod* faultyMod) {
|
|||
}
|
||||
|
||||
static LONG WINAPI exceptionHandler(LPEXCEPTION_POINTERS info) {
|
||||
// not all exceptions are critical, some (i.e. SetThreadName) can and should be ignored
|
||||
if (info->ExceptionRecord->ExceptionCode == 0x406d1388) {
|
||||
return EXCEPTION_CONTINUE_EXECUTION;
|
||||
// not all exceptions are critical, some can and should be ignored
|
||||
bool ignore = false;
|
||||
|
||||
switch (info->ExceptionRecord->ExceptionCode) {
|
||||
case DBG_CONTROL_C: ignore = true; break;
|
||||
case DBG_TERMINATE_THREAD: ignore = true; break;
|
||||
case DBG_TERMINATE_PROCESS: ignore = true; break;
|
||||
case STATUS_CONTROL_C_EXIT: ignore = true; break;
|
||||
case 0x406d1388: ignore = true; break; // SetThreadName
|
||||
}
|
||||
|
||||
if (ignore) {
|
||||
return EXCEPTION_CONTINUE_SEARCH;
|
||||
}
|
||||
|
||||
SymSetOptions(SYMOPT_UNDNAME | SYMOPT_DEFERRED_LOADS | SYMOPT_LOAD_LINES);
|
||||
|
|
Loading…
Add table
Reference in a new issue