Core/State: Guard g_save_thread with a mutex.

This commit is contained in:
Admiral H. Curtiss 2022-02-05 19:56:44 +01:00
parent 56ea1c1d74
commit 73311694b0
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB
1 changed files with 9 additions and 2 deletions

View File

@ -70,6 +70,7 @@ static std::mutex g_cs_undo_load_buffer;
static std::mutex g_cs_current_buffer;
static Common::Event g_compressAndDumpStateSyncEvent;
static std::recursive_mutex g_save_thread_mutex;
static std::thread g_save_thread;
// Don't forget to increase this after doing changes on the savestate system
@ -434,8 +435,12 @@ void SaveAs(const std::string& filename, bool wait)
save_args.filename = filename;
save_args.wait = wait;
Flush();
g_save_thread = std::thread(CompressAndDumpState, save_args);
{
std::lock_guard lk(g_save_thread_mutex);
Flush();
g_save_thread = std::thread(CompressAndDumpState, save_args);
}
g_compressAndDumpStateSyncEvent.Wait();
}
else
@ -695,6 +700,8 @@ void SaveFirstSaved()
void Flush()
{
std::lock_guard lk(g_save_thread_mutex);
// If already saving state, wait for it to finish
if (g_save_thread.joinable())
g_save_thread.join();