mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-02-19 00:39:38 +00:00
Handle frame pointer omission, (#21), part 4 (final part!): FPO stackwalker.
r=bryner - This change allows Airbag to properly walk win32 stacks produced by code built with MSVC's frame pointer omission optimization (/Oy). This optimization is enabled at /O1 and /O2. - There too many interface and file format changes to list here. http://groups.google.com/group/airbag-dev/browse_thread/thread/85ce85bfa8457ece git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@42 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -45,7 +45,7 @@ MinidumpProcessor::~MinidumpProcessor() {
|
||||
}
|
||||
|
||||
bool MinidumpProcessor::Process(const string &minidump_file,
|
||||
StackFrames *stack_frames) {
|
||||
CallStack *stack) {
|
||||
Minidump dump(minidump_file);
|
||||
if (!dump.Read()) {
|
||||
return false;
|
||||
@@ -79,7 +79,7 @@ bool MinidumpProcessor::Process(const string &minidump_file,
|
||||
return false;
|
||||
}
|
||||
|
||||
walker->Walk(stack_frames);
|
||||
walker->Walk(stack);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user