forked from OSchip/llvm-project
The ThreadPlanCallFunction needs to pass its "StopOthers" to its run to address subplan.
llvm-svn: 203231
This commit is contained in:
parent
ad3d81d320
commit
0ff099f10c
|
@ -125,7 +125,10 @@ public:
|
|||
m_takedown_done = true;
|
||||
}
|
||||
|
||||
protected:
|
||||
virtual void
|
||||
SetStopOthers (bool new_value);
|
||||
|
||||
protected:
|
||||
void ReportRegisterState (const char *message);
|
||||
|
||||
virtual bool
|
||||
|
|
|
@ -536,6 +536,13 @@ ThreadPlanCallFunction::BreakpointsExplainStop()
|
|||
return false;
|
||||
}
|
||||
|
||||
void
|
||||
ThreadPlanCallFunction::SetStopOthers (bool new_value)
|
||||
{
|
||||
m_subplan_sp->SetStopOthers(new_value);
|
||||
}
|
||||
|
||||
|
||||
bool
|
||||
ThreadPlanCallFunction::RestoreThreadState()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue