diff options
author | Jim Ingham <jingham@apple.com> | 2014-04-03 01:26:14 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-04-03 01:26:14 +0000 |
commit | 6c9ed91ccae7f08784c234c26f1e2b4cbd8ed4d0 (patch) | |
tree | de261ad0754faa6e1ffcc26ea00f647e09657027 /lldb/source/Commands/CommandObjectProcess.cpp | |
parent | 6cc0d2f61d20b5f5debacbfea575985e34764fea (diff) | |
download | llvm-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.cpp | 3 |
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); } } |