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
This commit is contained in:
ted.mielczarek 2008-03-18 16:10:10 +00:00
parent a194d6f1ac
commit dd2ff4a21c
11 changed files with 689 additions and 336 deletions

View file

@ -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
};