diff options
author | Jim Ingham <jingham@apple.com> | 2014-03-07 11:16:37 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-03-07 11:16:37 +0000 |
commit | 0ff099f10c52270feac74c54aa250218854bbe42 (patch) | |
tree | 8e893faf7041a531919e62928adecedb6c291735 /lldb/source/Target/ThreadPlanCallFunction.cpp | |
parent | ad3d81d320408a5baf50d61c6f666e0d854502d2 (diff) | |
download | bcm5719-llvm-0ff099f10c52270feac74c54aa250218854bbe42.tar.gz bcm5719-llvm-0ff099f10c52270feac74c54aa250218854bbe42.zip |
The ThreadPlanCallFunction needs to pass its "StopOthers" to its run to address subplan.
llvm-svn: 203231
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index e465dcf21d7..34f66cdbf59 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -536,6 +536,13 @@ ThreadPlanCallFunction::BreakpointsExplainStop() return false; } +void +ThreadPlanCallFunction::SetStopOthers (bool new_value) +{ + m_subplan_sp->SetStopOthers(new_value); +} + + bool ThreadPlanCallFunction::RestoreThreadState() { |