diff options
Diffstat (limited to 'src/google_breakpad/processor')
-rw-r--r-- | src/google_breakpad/processor/proc_maps_linux.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/google_breakpad/processor/proc_maps_linux.h b/src/google_breakpad/processor/proc_maps_linux.h index 6ddeb038..22f9f6a4 100644 --- a/src/google_breakpad/processor/proc_maps_linux.h +++ b/src/google_breakpad/processor/proc_maps_linux.h @@ -45,6 +45,9 @@ struct MappedMemoryRegion { // "[heap]" and "[stack]" are used to represent the location of the process' // heap and stack, respectively. string path; + + // The line from /proc/<pid>/maps that this struct represents. + string line; }; // Parses /proc/<pid>/maps input data and stores in |regions|. Returns true |