Make the fail messages

llvm-svn: 205497
This commit is contained in:
Jim Ingham
2014-04-03 01:26:14 +00:00
parent 6cc0d2f61d
commit 6c9ed91cca
7 changed files with 28 additions and 9 deletions

View File

@@ -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