aboutsummaryrefslogtreecommitdiff
path: root/src/client/linux/handler/exception_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/linux/handler/exception_handler.h')
-rw-r--r--src/client/linux/handler/exception_handler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/linux/handler/exception_handler.h b/src/client/linux/handler/exception_handler.h
index 6182a6c1..2a497037 100644
--- a/src/client/linux/handler/exception_handler.h
+++ b/src/client/linux/handler/exception_handler.h
@@ -34,6 +34,7 @@
#include <string>
#include <signal.h>
+#include <stdio.h>
#include "client/linux/crash_generation/crash_generation_client.h"
#include "processor/scoped_ptr.h"
@@ -42,6 +43,8 @@ struct sigaction;
namespace google_breakpad {
+class ExceptionHandler;
+
// ExceptionHandler
//
// ExceptionHandler can write a minidump file when an exception occurs,
@@ -163,7 +166,10 @@ class ExceptionHandler {
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
};
// Returns whether out-of-process dump generation is used or not.