aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad/common/minidump_exception_win32.h
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-09-04 20:00:33 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-09-04 20:00:33 +0000
commitb2bc3bcc845b59c12db49feead091faebd6d116b (patch)
treec8a519c19a1f137cf6579c3a1bb8e0d9b15eb48a /src/google_breakpad/common/minidump_exception_win32.h
parentBreakpad: Don't use the deprecated __gnu_cxx::hash_map container. (diff)
downloadbreakpad-b2bc3bcc845b59c12db49feead091faebd6d116b.tar.xz
Issue 328 - should have constant for VC++ exceptions, and stringify in MinidumpProcessor::GetCrashReason
r=nealsid at http://breakpad.appspot.com/25001/show git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@394 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google_breakpad/common/minidump_exception_win32.h')
-rw-r--r--src/google_breakpad/common/minidump_exception_win32.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/google_breakpad/common/minidump_exception_win32.h b/src/google_breakpad/common/minidump_exception_win32.h
index 7fd4bc4f..f052401c 100644
--- a/src/google_breakpad/common/minidump_exception_win32.h
+++ b/src/google_breakpad/common/minidump_exception_win32.h
@@ -94,8 +94,11 @@ typedef enum {
/* EXCEPTION_PRIV_INSTRUCTION */
MD_EXCEPTION_CODE_WIN_STACK_OVERFLOW = 0xc00000fd,
/* EXCEPTION_STACK_OVERFLOW */
- MD_EXCEPTION_CODE_WIN_POSSIBLE_DEADLOCK = 0xc0000194
+ MD_EXCEPTION_CODE_WIN_POSSIBLE_DEADLOCK = 0xc0000194,
/* EXCEPTION_POSSIBLE_DEADLOCK */
+ MD_EXCEPTION_CODE_WIN_UNHANDLED_CPP_EXCEPTION = 0xe06d7363
+ /* Per http://support.microsoft.com/kb/185294,
+ generated by Visual C++ compiler */
} MDExceptionCodeWin;