mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-27 01:35:06 +01:00
Provide a mechanism for SymbolSuppliers to interrupt processing (#93)
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@80 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
283fd39248
commit
f33b8d2d07
13 changed files with 174 additions and 96 deletions
|
|
@ -61,10 +61,11 @@ class Stackwalker {
|
|||
public:
|
||||
virtual ~Stackwalker() {}
|
||||
|
||||
// Creates a new CallStack and populates it by calling GetContextFrame and
|
||||
// Populates the given CallStack by calling GetContextFrame and
|
||||
// GetCallerFrame. The frames are further processed to fill all available
|
||||
// data. The caller takes ownership of the CallStack returned by Walk.
|
||||
CallStack* Walk();
|
||||
// data. Returns true if the stackwalk completed, or false if it was
|
||||
// interrupted by SymbolSupplier::GetSymbolFile().
|
||||
bool Walk(CallStack *stack);
|
||||
|
||||
// Returns a new concrete subclass suitable for the CPU that a stack was
|
||||
// generated on, according to the CPU type indicated by the context
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue