mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-25 16:54:43 +01:00
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:
parent
a194d6f1ac
commit
dd2ff4a21c
11 changed files with 689 additions and 336 deletions
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue