SBThread::StepOut and SBThread::StepOutOfFrame should both run all threads.

llvm-svn: 163938
This commit is contained in:
Jim Ingham 2012-09-14 21:07:14 +00:00
parent 43d886ec90
commit 94b092461d
1 changed files with 2 additions and 2 deletions

View File

@ -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,