aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectProcess.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2014-04-03 01:26:14 +0000
committerJim Ingham <jingham@apple.com>2014-04-03 01:26:14 +0000
commit6c9ed91ccae7f08784c234c26f1e2b4cbd8ed4d0 (patch)
treede261ad0754faa6e1ffcc26ea00f647e09657027 /lldb/source/Commands/CommandObjectProcess.cpp
parent6cc0d2f61d20b5f5debacbfea575985e34764fea (diff)
downloadllvm-6c9ed91ccae7f08784c234c26f1e2b4cbd8ed4d0.zip
llvm-6c9ed91ccae7f08784c234c26f1e2b4cbd8ed4d0.tar.gz
llvm-6c9ed91ccae7f08784c234c26f1e2b4cbd8ed4d0.tar.bz2
Make the fail messages
llvm-svn: 205497
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectProcess.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp
index 9a137a2..27c1109 100644
--- a/lldb/source/Commands/CommandObjectProcess.cpp
+++ b/lldb/source/Commands/CommandObjectProcess.cpp
@@ -758,7 +758,8 @@ protected:
// Set the actions that the threads should each take when resuming
for (uint32_t idx=0; idx<num_threads; ++idx)
{
- process->GetThreadList().GetThreadAtIndex(idx)->SetResumeState (eStateRunning);
+ const bool override_suspend = false;
+ process->GetThreadList().GetThreadAtIndex(idx)->SetResumeState (eStateRunning, override_suspend);
}
}