From d119a921ea611dc38cfcb7411759ddf2c688603f Mon Sep 17 00:00:00 2001 From: mmentovai Date: Mon, 23 Oct 2006 19:24:58 +0000 Subject: Make stack_frame_info vector hold linked_ptrs instead of objects; make Stackwalker::Walk create and return a CallStack instead of filling a caller-supplied one (#54). r=bryner Interface change: Stackwalker::Walk and MinidumpProcessor::Process now return a new CallStack*. http://groups.google.com/group/airbag-dev/browse_thread/thread/d2bad5d7c115c3fe git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@45 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/processor/source_line_resolver.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/processor/source_line_resolver.h') diff --git a/src/processor/source_line_resolver.h b/src/processor/source_line_resolver.h index f0d1e54b..cf93c69e 100644 --- a/src/processor/source_line_resolver.h +++ b/src/processor/source_line_resolver.h @@ -66,8 +66,11 @@ class SourceLineResolver { // Fills in the function_base, function_name, source_file_name, // and source_line fields of the StackFrame. The instruction and // module_name fields must already be filled in. Additional debugging - // information, if available, is placed in frame_info. - void FillSourceLineInfo(StackFrame *frame, StackFrameInfo *frame_info) const; + // information, if available, is returned. If the information is not + // available, returns NULL. A NULL return value does not indicate an + // error. The caller takes ownership of any returned StackFrameInfo + // object. + StackFrameInfo* FillSourceLineInfo(StackFrame *frame) const; private: template class MemAddrMap; -- cgit v1.2.1