diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 411f28d..f06d4bd 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -228,7 +228,7 @@ protected: thread->GetIndexID()); return false; } - if (m_options.m_extended_backtrace) { + if (m_options.m_extended_backtrace && !GetDebugger().InterruptRequested()) { DoExtendedBacktrace(thread, result); } |