diff options
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index a2a7c51fd9d..05d54d6d073 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -625,7 +625,7 @@ SBThread::StepOut () if (exe_ctx.HasThreadScope()) { bool abort_other_plans = false; - bool stop_other_threads = true; + bool stop_other_threads = false; Thread *thread = exe_ctx.GetThreadPtr(); @@ -661,7 +661,7 @@ SBThread::StepOutOfFrame (lldb::SBFrame &sb_frame) if (exe_ctx.HasThreadScope()) { bool abort_other_plans = false; - bool stop_other_threads = true; + bool stop_other_threads = false; Thread *thread = exe_ctx.GetThreadPtr(); ThreadPlan *new_plan = thread->QueueThreadPlanForStepOut (abort_other_plans, |