Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(30)

Unified Diff: src/processor/minidump_processor.cc

Issue 311002: Handle ios dump. (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Patch Set: '' Created 13 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/processor/minidump.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/processor/minidump_processor.cc
===================================================================
--- src/processor/minidump_processor.cc (revision 854)
+++ src/processor/minidump_processor.cc (working copy)
@@ -386,6 +386,11 @@
break;
}
+ case MD_OS_IOS: {
+ info->os = "iOS";
+ break;
+ }
+
case MD_OS_LINUX: {
info->os = "Linux";
break;
@@ -451,7 +456,8 @@
return reason;
switch (raw_system_info->platform_id) {
- case MD_OS_MAC_OS_X: {
+ case MD_OS_MAC_OS_X:
+ case MD_OS_IOS: {
char flags_string[11];
snprintf(flags_string, sizeof(flags_string), "0x%08x", exception_flags);
switch (exception_code) {
« no previous file with comments | « src/processor/minidump.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted