forked from OSchip/llvm-project
SBThread::StepOut and SBThread::StepOutOfFrame should both run all threads.
llvm-svn: 163938
This commit is contained in:
parent
43d886ec90
commit
94b092461d
|
@ -625,7 +625,7 @@ SBThread::StepOut ()
|
||||||
if (exe_ctx.HasThreadScope())
|
if (exe_ctx.HasThreadScope())
|
||||||
{
|
{
|
||||||
bool abort_other_plans = false;
|
bool abort_other_plans = false;
|
||||||
bool stop_other_threads = true;
|
bool stop_other_threads = false;
|
||||||
|
|
||||||
Thread *thread = exe_ctx.GetThreadPtr();
|
Thread *thread = exe_ctx.GetThreadPtr();
|
||||||
|
|
||||||
|
@ -661,7 +661,7 @@ SBThread::StepOutOfFrame (lldb::SBFrame &sb_frame)
|
||||||
if (exe_ctx.HasThreadScope())
|
if (exe_ctx.HasThreadScope())
|
||||||
{
|
{
|
||||||
bool abort_other_plans = false;
|
bool abort_other_plans = false;
|
||||||
bool stop_other_threads = true;
|
bool stop_other_threads = false;
|
||||||
Thread *thread = exe_ctx.GetThreadPtr();
|
Thread *thread = exe_ctx.GetThreadPtr();
|
||||||
|
|
||||||
ThreadPlan *new_plan = thread->QueueThreadPlanForStepOut (abort_other_plans,
|
ThreadPlan *new_plan = thread->QueueThreadPlanForStepOut (abort_other_plans,
|
||||||
|
|
Loading…
Reference in New Issue