aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectProcess.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2014-03-03 20:29:02 +0000
committerGreg Clayton <gclayton@apple.com>2014-03-03 20:29:02 +0000
commite556a4230cb5a08dfb0a62ae5eae144ec032b501 (patch)
tree630fa7cb4392790cfcc7a0df4ad8b0e928c427e1 /lldb/source/Commands/CommandObjectProcess.cpp
parenta741b8c451a7f34487217f39a3e62061e82dc12c (diff)
downloadllvm-e556a4230cb5a08dfb0a62ae5eae144ec032b501.zip
llvm-e556a4230cb5a08dfb0a62ae5eae144ec032b501.tar.gz
llvm-e556a4230cb5a08dfb0a62ae5eae144ec032b501.tar.bz2
Stop messages from being emitted out of order when detaching.
llvm-svn: 202756
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectProcess.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp
index 49a3922..9a137a2 100644
--- a/lldb/source/Commands/CommandObjectProcess.cpp
+++ b/lldb/source/Commands/CommandObjectProcess.cpp
@@ -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)