diff options
Diffstat (limited to 'src/google_breakpad/processor/code_module.h')
-rw-r--r-- | src/google_breakpad/processor/code_module.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/google_breakpad/processor/code_module.h b/src/google_breakpad/processor/code_module.h index b139907c..29b8d9c9 100644 --- a/src/google_breakpad/processor/code_module.h +++ b/src/google_breakpad/processor/code_module.h @@ -94,6 +94,9 @@ class CodeModule { // should always reflect the original values (reported in the minidump). virtual uint64_t shrink_down_delta() const = 0; virtual void SetShrinkDownDelta(uint64_t shrink_down_delta) = 0; + + // Whether the module was unloaded from memory. + virtual bool is_unloaded() const = 0; }; } // namespace google_breakpad |