The ThreadPlanCallFunction needs to pass its "StopOthers" to its run to address subplan.

llvm-svn: 203231
This commit is contained in:
Jim Ingham 2014-03-07 11:16:37 +00:00
parent ad3d81d320
commit 0ff099f10c
2 changed files with 11 additions and 1 deletions

View File

@ -125,7 +125,10 @@ public:
m_takedown_done = true;
}
protected:
virtual void
SetStopOthers (bool new_value);
protected:
void ReportRegisterState (const char *message);
virtual bool

View File

@ -536,6 +536,13 @@ ThreadPlanCallFunction::BreakpointsExplainStop()
return false;
}
void
ThreadPlanCallFunction::SetStopOthers (bool new_value)
{
m_subplan_sp->SetStopOthers(new_value);
}
bool
ThreadPlanCallFunction::RestoreThreadState()
{