[Lldb-commits] [lldb] r163924 - /lldb/trunk/source/API/SBThread.cpp

Jim Ingham jingham at apple.com
Fri Sep 14 11:57:14 PDT 2012


Author: jingham
Date: Fri Sep 14 13:57:14 2012
New Revision: 163924

URL: http://llvm.org/viewvc/llvm-project?rev=163924&view=rev
Log:
SBThread::StepOverUntil should run all threads.  It is running to breakpoints, so running one thread is likely to cause the target to stall.

Modified:
    lldb/trunk/source/API/SBThread.cpp

Modified: lldb/trunk/source/API/SBThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBThread.cpp?rev=163924&r1=163923&r2=163924&view=diff
==============================================================================
--- lldb/trunk/source/API/SBThread.cpp (original)
+++ lldb/trunk/source/API/SBThread.cpp Fri Sep 14 13:57:14 2012
@@ -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;
 





More information about the lldb-commits mailing list