diff options
author | Jim Ingham <jingham@apple.com> | 2012-09-14 18:57:14 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-09-14 18:57:14 +0000 |
commit | c02e3344220d09f0a835760309baaa01259fac77 (patch) | |
tree | a0ee7feef5f4bce19178708c7590c4f5b3903fa8 /lldb/source/API/SBThread.cpp | |
parent | 66429fe1c7997628eec2881ce15a8c5604ff6b39 (diff) | |
download | bcm5719-llvm-c02e3344220d09f0a835760309baaa01259fac77.tar.gz bcm5719-llvm-c02e3344220d09f0a835760309baaa01259fac77.zip |
SBThread::StepOverUntil should run all threads. It is running to breakpoints, so running one thread is likely to cause the target to stall.
llvm-svn: 163924
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index 223568a74f1..a2a7c51fd9d 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -819,7 +819,7 @@ SBThread::StepOverUntil (lldb::SBFrame &sb_frame, 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; |