Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Unified Diff: client/linux/minidump_writer/linux_ptrace_dumper.cc

Issue 1268023003: Fix breakpad for arm on arm64 (Closed) Base URL: https://chromium.googlesource.com/external/google-breakpad/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/linux/minidump_writer/linux_ptrace_dumper.cc
diff --git a/client/linux/minidump_writer/linux_ptrace_dumper.cc b/client/linux/minidump_writer/linux_ptrace_dumper.cc
index 5ea0050de58cb0bf05b7922b331150f900d5571c..db7f9e3219a17088007e64dcdaef5de302244f4f 100644
--- a/client/linux/minidump_writer/linux_ptrace_dumper.cc
+++ b/client/linux/minidump_writer/linux_ptrace_dumper.cc
@@ -209,7 +209,15 @@ bool LinuxPtraceDumper::GetThreadInfoByIndex(size_t index, ThreadInfo* info) {
void* fp_addr;
Lei Zhang 2015/08/04 00:11:33 - I would just skip this entire block on Android +
cjhopman 2015/08/04 23:28:45 Done.
info->GetFloatingPointRegisters(&fp_addr, NULL);
if (sys_ptrace(PTRACE_GETFPREGS, tid, NULL, fp_addr) == -1) {
+#if defined(__ANDROID__) && defined(__ARM_EABI__)
+ // When running an arm build on an arm64 device, attempting to get the
+ // floating point registers fails with EIO. Ignore that error.
+ if (errno != EIO) {
+ return false;
+ }
+#else
return false;
+#endif
}
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698