mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-02-23 01:39:39 +00:00
Add crash reason extraction to microdump processor
BUG=754715 Change-Id: I00fe62ed06dbbab4c8f6c416d56e2d444be11571 Reviewed-on: https://chromium-review.googlesource.com/621307 Reviewed-by: Robert Sesek <rsesek@chromium.org>
This commit is contained in:
committed by
Tobias Sargeant
parent
b1e7ec065d
commit
2b3be5179e
@@ -119,11 +119,15 @@ class Microdump {
|
||||
MicrodumpModules* GetModules() { return modules_.get(); }
|
||||
SystemInfo* GetSystemInfo() { return system_info_.get(); }
|
||||
|
||||
string GetCrashReason() { return crash_reason_; }
|
||||
uint64_t GetCrashAddress() { return crash_address_; }
|
||||
private:
|
||||
scoped_ptr<MicrodumpContext> context_;
|
||||
scoped_ptr<MicrodumpMemoryRegion> stack_region_;
|
||||
scoped_ptr<MicrodumpModules> modules_;
|
||||
scoped_ptr<SystemInfo> system_info_;
|
||||
string crash_reason_;
|
||||
uint64_t crash_address_;
|
||||
};
|
||||
|
||||
} // namespace google_breakpad
|
||||
|
||||
Reference in New Issue
Block a user