diff options
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
| -rw-r--r-- | lldb/source/API/SBDebugger.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index a655950926f..4b00f19d22a 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -986,7 +986,8 @@ SBDebugger::RunCommandInterpreter (bool auto_handle_events, bool spawn_thread, SBCommandInterpreterRunOptions &options, int &num_errors, - bool &quit_requested) + bool &quit_requested, + bool &stopped_for_crash) { if (m_opaque_sp) @@ -995,6 +996,7 @@ SBDebugger::RunCommandInterpreter (bool auto_handle_events, interp.RunCommandInterpreter(auto_handle_events, spawn_thread, options.ref()); num_errors = interp.GetNumErrors(); quit_requested = interp.GetQuitRequested(); + stopped_for_crash = interp.GetStoppedForCrash(); } } |

