Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
2 changes: 1 addition & 1 deletion Source/Core/Common/WorkQueueThread.h
Expand Up @@ -60,7 +60,6 @@ class WorkQueueThread

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

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

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

0 comments on commit 2f0358a

Please sign in to comment.