Skip to content
Permalink
Browse files
Merge pull request #10547 from AdmiralCurtiss/save-state-threading
Core/State: Rewrite threading behavior when multiple Save requests are happening.
  • Loading branch information
AdmiralCurtiss committed Oct 1, 2022
2 parents c196c47 + f3a23db commit 2f0358a
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 112 deletions.
@@ -60,7 +60,6 @@ class WorkQueueThread

bool IsCancelled() const { return m_cancelled.IsSet(); }

private:
void Shutdown()
{
if (m_thread.joinable())
@@ -71,6 +70,7 @@ class WorkQueueThread
}
}

private:
void ThreadLoop()
{
Common::SetCurrentThreadName("WorkQueueThread");

0 comments on commit 2f0358a

Please sign in to comment.