From dd2ff4a21c57672170eb14ccc5142efd7d92f3f1 Mon Sep 17 00:00:00 2001 From: "ted.mielczarek" Date: Tue, 18 Mar 2008 16:10:10 +0000 Subject: issue 223 - Fixes for SOlaris handler during integration with Firefox. patch by Alfred Peng, r=mento,me git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@250 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/google_breakpad/processor/minidump.h | 1 + src/google_breakpad/processor/stack_frame_cpu.h | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src/google_breakpad') diff --git a/src/google_breakpad/processor/minidump.h b/src/google_breakpad/processor/minidump.h index 8c149337..9a135d2d 100644 --- a/src/google_breakpad/processor/minidump.h +++ b/src/google_breakpad/processor/minidump.h @@ -79,6 +79,7 @@ #ifndef GOOGLE_BREAKPAD_PROCESSOR_MINIDUMP_H__ #define GOOGLE_BREAKPAD_PROCESSOR_MINIDUMP_H__ +#include #include #include diff --git a/src/google_breakpad/processor/stack_frame_cpu.h b/src/google_breakpad/processor/stack_frame_cpu.h index a8840278..70823b9c 100644 --- a/src/google_breakpad/processor/stack_frame_cpu.h +++ b/src/google_breakpad/processor/stack_frame_cpu.h @@ -128,9 +128,9 @@ struct StackFrameSPARC : public StackFrame { // to be confirmed enum ContextValidity { CONTEXT_VALID_NONE = 0, - CONTEXT_VALID_PC = 0 << 0, - CONTEXT_VALID_SP = 0 << 1, - CONTEXT_VALID_FP = 0 << 2, + CONTEXT_VALID_PC = 1 << 0, + CONTEXT_VALID_SP = 1 << 1, + CONTEXT_VALID_FP = 1 << 2, CONTEXT_VALID_ALL = -1 }; -- cgit v1.2.1