aboutsummaryrefslogtreecommitdiff
path: root/src/processor/source_line_resolver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/processor/source_line_resolver.h')
-rw-r--r--src/processor/source_line_resolver.h7
1 files changed, 5 insertions, 2 deletions
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 T> class MemAddrMap;