diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-04-20 18:36:42 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-04-20 18:36:42 +0000 |
commit | b63740b32960e63008b147f01f382e5e70c050f0 (patch) | |
tree | d61b1631a8ed55bde289e5c1ab3a06de3bcb3aec /src/google_breakpad/processor | |
parent | c++filt crashes when fed some mangled ObjC++ names. Oops. Patch by Dave (diff) | |
download | breakpad-b63740b32960e63008b147f01f382e5e70c050f0.tar.xz |
Truncated Windows/x86 stacks when using FPO. Add stack scanning to recover
instruction and frame pointers with better reliability. r=bryner
http://groups.google.com/group/google-breakpad-dev/browse_thread/thread/e74af03fb0629aa0
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@146 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google_breakpad/processor')
-rw-r--r-- | src/google_breakpad/processor/stackwalker.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/google_breakpad/processor/stackwalker.h b/src/google_breakpad/processor/stackwalker.h index cc21e57b..c463fd80 100644 --- a/src/google_breakpad/processor/stackwalker.h +++ b/src/google_breakpad/processor/stackwalker.h @@ -103,6 +103,10 @@ class Stackwalker { // get information from the stack. MemoryRegion *memory_; + // A list of modules, for populating each StackFrame's module information. + // This field is optional and may be NULL. + const CodeModules *modules_; + private: // Obtains the context frame, the innermost called procedure in a stack // trace. Returns NULL on failure. GetContextFrame allocates a new @@ -122,10 +126,6 @@ class Stackwalker { const CallStack *stack, const vector< linked_ptr<StackFrameInfo> > &stack_frame_info) = 0; - // A list of modules, for populating each StackFrame's module information. - // This field is optional and may be NULL. - const CodeModules *modules_; - // The optional SymbolSupplier for resolving source line info. SymbolSupplier *supplier_; |