summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBThread.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2012-09-14 21:07:14 +0000
committerJim Ingham <jingham@apple.com>2012-09-14 21:07:14 +0000
commit94b092461d46de8e4f6b1c409cda6d81b882ca93 (patch)
tree0bdaab3e324121cf160c5af7b907ccae5259aa69 /lldb/source/API/SBThread.cpp
parent43d886ec90dc28e36000fa5c78d010374e874d07 (diff)
downloadbcm5719-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.cpp4
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,
OpenPOWER on IntegriCloud