mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-27 23:44:16 +01:00
Generate reason for bad function table exception
This exception is being seen in Chrome during stack unwinding. BUG= Change-Id: Ica3f721ca605dff835ffc3814c60bab9f6f9b192 Reviewed-on: https://chromium-review.googlesource.com/404332 Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
parent
54b524be13
commit
325120efbd
@ -94,6 +94,8 @@ typedef enum {
|
||||
/* EXCEPTION_PRIV_INSTRUCTION */
|
||||
MD_EXCEPTION_CODE_WIN_STACK_OVERFLOW = 0xc00000fd,
|
||||
/* EXCEPTION_STACK_OVERFLOW */
|
||||
MD_EXCEPTION_CODE_WIN_BAD_FUNCTION_TABLE = 0xc00000ff,
|
||||
/* EXCEPTION_BAD_FUNCTION_TABLE */
|
||||
MD_EXCEPTION_CODE_WIN_POSSIBLE_DEADLOCK = 0xc0000194,
|
||||
/* EXCEPTION_POSSIBLE_DEADLOCK */
|
||||
MD_EXCEPTION_CODE_WIN_STACK_BUFFER_OVERRUN = 0xc0000409,
|
||||
|
@ -1177,6 +1177,9 @@ string MinidumpProcessor::GetCrashReason(Minidump *dump, uint64_t *address) {
|
||||
case MD_EXCEPTION_CODE_WIN_STACK_OVERFLOW:
|
||||
reason = "EXCEPTION_STACK_OVERFLOW";
|
||||
break;
|
||||
case MD_EXCEPTION_CODE_WIN_BAD_FUNCTION_TABLE:
|
||||
reason = "EXCEPTION_BAD_FUNCTION_TABLE";
|
||||
break;
|
||||
case MD_EXCEPTION_CODE_WIN_POSSIBLE_DEADLOCK:
|
||||
reason = "EXCEPTION_POSSIBLE_DEADLOCK";
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user