[Lldb-commits] [lldb] r202756 - Stop messages from being emitted out of order when detaching.

Greg Clayton gclayton at apple.com
Mon Mar 3 12:29:02 PST 2014


Author: gclayton
Date: Mon Mar  3 14:29:02 2014
New Revision: 202756

URL: http://llvm.org/viewvc/llvm-project?rev=202756&view=rev
Log:
Stop messages from being emitted out of order when detaching. 


Modified:
    lldb/trunk/source/Commands/CommandObjectProcess.cpp

Modified: lldb/trunk/source/Commands/CommandObjectProcess.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectProcess.cpp?rev=202756&r1=202755&r2=202756&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectProcess.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectProcess.cpp Mon Mar  3 14:29:02 2014
@@ -911,7 +911,6 @@ protected:
     DoExecute (Args& command, CommandReturnObject &result)
     {
         Process *process = m_exe_ctx.GetProcessPtr();
-        result.AppendMessageWithFormat ("Detaching from process %" PRIu64 "\n", process->GetID());
         // FIXME: This will be a Command Option:
         bool keep_stopped;
         if (m_options.m_keep_stopped == eLazyBoolCalculate)





More information about the lldb-commits mailing list