SBThread::StepOverUntil should run all threads. It is running to breakpoints, so running one thread is likely to cause the target to stall.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@163924 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBThread.cpp b/source/API/SBThread.cpp
index 223568a..a2a7c51 100644
--- a/source/API/SBThread.cpp
+++ b/source/API/SBThread.cpp
@@ -819,7 +819,7 @@
std::vector<addr_t> step_over_until_addrs;
const bool abort_other_plans = false;
- const bool stop_other_threads = true;
+ const bool stop_other_threads = false;
const bool check_inlines = true;
const bool exact = false;