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

Unified Diff: src/client/linux/handler/exception_handler.h

Issue 543125: Port linux_syscall_support and linux_dumper to support Linux ARM. Unit tests... (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Patch Set: '' Created 10 years, 11 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
Index: src/client/linux/handler/exception_handler.h
===================================================================
--- src/client/linux/handler/exception_handler.h (revision 400)
+++ src/client/linux/handler/exception_handler.h (working copy)
@@ -146,7 +146,10 @@
siginfo_t siginfo;
pid_t tid; // the crashing thread.
struct ucontext context;
+#if !defined(__ARM_EABI__)
+ // #ifdef this out because FP state is not part of user ABI for Linux ARM.
struct _libc_fpstate float_state;
+#endif
};
private:

Powered by Google App Engine
This is Rietveld 408576698