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

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


Author: jingham
Date: Fri Sep 14 16:07:14 2012
New Revision: 163938

URL: http://llvm.org/viewvc/llvm-project?rev=163938&view=rev
Log:
SBThread::StepOut and SBThread::StepOutOfFrame should both run all threads.

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=163938&r1=163937&r2=163938&view=diff
==============================================================================
--- lldb/trunk/source/API/SBThread.cpp (original)
+++ lldb/trunk/source/API/SBThread.cpp Fri Sep 14 16:07:14 2012
@@ -625,7 +625,7 @@
     if (exe_ctx.HasThreadScope())
     {
         bool abort_other_plans = false;
-        bool stop_other_threads = true;
+        bool stop_other_threads = false;
 
         Thread *thread = exe_ctx.GetThreadPtr();
 
@@ -661,7 +661,7 @@
     if (exe_ctx.HasThreadScope())
     {
         bool abort_other_plans = false;
-        bool stop_other_threads = true;
+        bool stop_other_threads = false;
         Thread *thread = exe_ctx.GetThreadPtr();
 
         ThreadPlan *new_plan = thread->QueueThreadPlanForStepOut (abort_other_plans,





More information about the lldb-commits mailing list