diff options
author | Todd Fiala <tfiala@google.com> | 2014-04-18 17:01:01 +0000 |
---|---|---|
committer | Todd Fiala <tfiala@google.com> | 2014-04-18 17:01:01 +0000 |
commit | 3dbe13f6a8b8a5e475d88a135d484797aa3b504c (patch) | |
tree | e98f14110ad53902c88d03a40e062270a7afd131 /lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | |
parent | 889873d890ee6376a7f53e506d6f4ad2a91b1196 (diff) | |
download | bcm5719-llvm-3dbe13f6a8b8a5e475d88a135d484797aa3b504c.tar.gz bcm5719-llvm-3dbe13f6a8b8a5e475d88a135d484797aa3b504c.zip |
Address hung tests in Linux.
Follow-up patch coming to address test failures exposed by this change.
llvm-svn: 206618
Diffstat (limited to 'lldb/source/Plugins/Process/POSIX/POSIXThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp index f6deecedc6f..47b50c57376 100644 --- a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp +++ b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp @@ -110,7 +110,7 @@ POSIXThread::RefreshStateAfterStop() GetRegisterContext()->InvalidateIfNeeded (force); } // FIXME: This should probably happen somewhere else. - SetResumeState(eStateRunning); + SetResumeState(eStateRunning, true); Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_THREAD)); if (log) log->Printf ("POSIXThread::%s (tid = %" PRIi64 ") setting thread resume state to running", __FUNCTION__, GetID()); |