From 2fc823f5794737391e231c1dce6c2b0793213e53 Mon Sep 17 00:00:00 2001 From: mmentovai Date: Fri, 20 Oct 2006 19:50:01 +0000 Subject: Add PUBLIC support to SourceLineResolver (resolve function names in Windows system libraries) (#53) StackFrame::function_base is not populated (#49) r=bryner http://groups.google.com/group/airbag-dev/browse_thread/thread/a17d35348e7027bb git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@43 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/google/stack_frame.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/google/stack_frame.h') diff --git a/src/google/stack_frame.h b/src/google/stack_frame.h index 43b52dd0..563106e4 100644 --- a/src/google/stack_frame.h +++ b/src/google/stack_frame.h @@ -45,7 +45,8 @@ struct StackFrame { function_base(), function_name(), source_file_name(), - source_line() {} + source_line(), + source_line_base() {} virtual ~StackFrame() {} // The program counter location as an absolute virtual address. For the @@ -74,6 +75,10 @@ struct StackFrame { // The (1-based) source line number, may be omitted if debug symbols are // not available. int source_line; + + // The start address of the source line, may be omitted if debug symbols + // are not available. + u_int64_t source_line_base; }; } // namespace google_airbag -- cgit v1.2.1