[Lldb-commits] [lldb] r156885 - /lldb/trunk/source/Commands/CommandObjectThread.cpp
Jim Ingham
jingham at apple.com
Tue May 15 17:37:41 PDT 2012
Author: jingham
Date: Tue May 15 19:37:40 2012
New Revision: 156885
URL: http://llvm.org/viewvc/llvm-project?rev=156885&view=rev
Log:
Set the result status correctly for asynchronous step-in/out/over commands.
Modified:
lldb/trunk/source/Commands/CommandObjectThread.cpp
Modified: lldb/trunk/source/Commands/CommandObjectThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectThread.cpp?rev=156885&r1=156884&r2=156885&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectThread.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectThread.cpp Tue May 15 19:37:40 2012
@@ -543,6 +543,10 @@
result.AppendMessageWithFormat ("Process %llu %s\n", process->GetID(), StateAsCString (state));
result.SetStatus (eReturnStatusSuccessFinishNoResult);
}
+ else
+ {
+ result.SetStatus (eReturnStatusSuccessContinuingNoResult);
+ }
}
else
{
More information about the lldb-commits
mailing list