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/API/SBThread.cpp | |
parent | 6cc0d2f61d20b5f5debacbfea575985e34764fea (diff) | |
download | bcm5719-llvm-6c9ed91ccae7f08784c234c26f1e2b4cbd8ed4d0.tar.gz bcm5719-llvm-6c9ed91ccae7f08784c234c26f1e2b4cbd8ed4d0.zip |
Make the fail messages
llvm-svn: 205497
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index 29381dff326..fe672d10719 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -1028,7 +1028,8 @@ SBThread::Resume () Process::StopLocker stop_locker; if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock())) { - exe_ctx.GetThreadPtr()->SetResumeState (eStateRunning); + const bool override_suspend = true; + exe_ctx.GetThreadPtr()->SetResumeState (eStateRunning, override_suspend); result = true; } else |