From 6c9ed91ccae7f08784c234c26f1e2b4cbd8ed4d0 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Thu, 3 Apr 2014 01:26:14 +0000 Subject: Make the fail messages llvm-svn: 205497 --- lldb/source/API/SBThread.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lldb/source/API/SBThread.cpp') 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 -- cgit v1.2.3