diff options
author | Jim Ingham <jingham@apple.com> | 2014-02-28 02:52:06 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-02-28 02:52:06 +0000 |
commit | 286fb1ef32243f29c984b4559b1a1207c8af96cd (patch) | |
tree | bc39f81d73c8031654444ef231eb5ffae1d0728d /lldb/source/Target/ThreadPlanCallFunction.cpp | |
parent | a51f0f8367acb79177abfb93e5b3533b490448cf (diff) | |
download | bcm5719-llvm-286fb1ef32243f29c984b4559b1a1207c8af96cd.tar.gz bcm5719-llvm-286fb1ef32243f29c984b4559b1a1207c8af96cd.zip |
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
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index 854750b8581..e465dcf21d7 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -425,17 +425,6 @@ ThreadPlanCallFunction::StopOthers () return m_stop_other_threads; } -void -ThreadPlanCallFunction::SetStopOthers (bool new_value) -{ - if (m_subplan_sp) - { - ThreadPlanRunToAddress *address_plan = static_cast<ThreadPlanRunToAddress *>(m_subplan_sp.get()); - address_plan->SetStopOthers(new_value); - } - m_stop_other_threads = new_value; -} - StateType ThreadPlanCallFunction::GetPlanRunState () { |