Chromium Code Reviews| Index: base/debug/stack_trace_android.cc |
| diff --git a/base/debug/stack_trace_android.cc b/base/debug/stack_trace_android.cc |
| index cc03d60ba97f3d8fe7e6dd121391592bdb37d44a..d71d246da63b68d5c74e910b55590e5ff1217fcb 100644 |
| --- a/base/debug/stack_trace_android.cc |
| +++ b/base/debug/stack_trace_android.cc |
| @@ -10,6 +10,11 @@ |
| #include "base/logging.h" |
| +#ifdef __MIPSEL__ |
| +// SIGSTKFLT is not defined for MIPS. |
| +#define SIGSTKFLT SIGSEGV |
|
cjhopman
2013/04/19 18:02:10
Can we just use SIGSEGV for all arches?
petarj
2013/04/21 01:17:14
I guess we could. Would you like me to change it i
|
| +#endif |
| + |
| namespace base { |
| namespace debug { |