diff options
author | Jim Ingham <jingham@apple.com> | 2012-09-14 21:07:14 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-09-14 21:07:14 +0000 |
commit | 94b092461d46de8e4f6b1c409cda6d81b882ca93 (patch) | |
tree | 0bdaab3e324121cf160c5af7b907ccae5259aa69 /lldb/source/API/SBThread.cpp | |
parent | 43d886ec90dc28e36000fa5c78d010374e874d07 (diff) | |
download | bcm5719-llvm-94b092461d46de8e4f6b1c409cda6d81b882ca93.tar.gz bcm5719-llvm-94b092461d46de8e4f6b1c409cda6d81b882ca93.zip |
SBThread::StepOut and SBThread::StepOutOfFrame should both run all threads.
llvm-svn: 163938
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, |