Plumb the EvaluateExpressionOptions::{Set,Get}StopOthers through the SB API, and make it work in RunThreadPlan.
Also remove SetStopOthers from the ThreadPlanCallFunction, because if the value you have doesn't match what is in the EvaluateExpressionOptions the plan was passed when created it won't work correctly. llvm-svn: 202464
This commit is contained in:
@@ -113,6 +113,18 @@ SBExpressionOptions::SetTryAllThreads (bool run_others)
|
||||
m_opaque_ap->SetTryAllThreads (run_others);
|
||||
}
|
||||
|
||||
bool
|
||||
SBExpressionOptions::GetStopOthers () const
|
||||
{
|
||||
return m_opaque_ap->GetStopOthers ();
|
||||
}
|
||||
|
||||
void
|
||||
SBExpressionOptions::SetStopOthers (bool run_others)
|
||||
{
|
||||
m_opaque_ap->SetStopOthers (run_others);
|
||||
}
|
||||
|
||||
bool
|
||||
SBExpressionOptions::GetTrapExceptions () const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user