mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
Merge pull request #3095 from void-ghost/savestate_race_condition_fix
SaveState: Fix for race condition in SaveAs(...)
This commit is contained in:
@ -110,6 +110,7 @@
|
||||
<ClInclude Include="NonCopyable.h" />
|
||||
<ClInclude Include="PcapFile.h" />
|
||||
<ClInclude Include="Profiler.h" />
|
||||
<ClInclude Include="ScopeGuard.h" />
|
||||
<ClInclude Include="SDCardUtil.h" />
|
||||
<ClInclude Include="SettingsHandler.h" />
|
||||
<ClInclude Include="StringUtil.h" />
|
||||
|
@ -53,6 +53,7 @@
|
||||
<ClInclude Include="Network.h" />
|
||||
<ClInclude Include="PcapFile.h" />
|
||||
<ClInclude Include="Profiler.h" />
|
||||
<ClInclude Include="ScopeGuard.h" />
|
||||
<ClInclude Include="SDCardUtil.h" />
|
||||
<ClInclude Include="SettingsHandler.h" />
|
||||
<ClInclude Include="StringUtil.h" />
|
||||
|
50
Source/Core/Common/ScopeGuard.h
Normal file
50
Source/Core/Common/ScopeGuard.h
Normal file
@ -0,0 +1,50 @@
|
||||
// Copyright 2015 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <functional>
|
||||
|
||||
namespace Common
|
||||
{
|
||||
|
||||
class ScopeGuard final
|
||||
{
|
||||
public:
|
||||
template<class Callable>
|
||||
ScopeGuard(Callable&& finalizer) : m_finalizer(std::forward<Callable>(finalizer)) {}
|
||||
|
||||
ScopeGuard(ScopeGuard&& other) : m_finalizer(std::move(other.m_finalizer))
|
||||
{
|
||||
other.m_finalizer = nullptr;
|
||||
}
|
||||
|
||||
~ScopeGuard()
|
||||
{
|
||||
Exit();
|
||||
}
|
||||
|
||||
void Dismiss()
|
||||
{
|
||||
m_finalizer = nullptr;
|
||||
}
|
||||
|
||||
void Exit()
|
||||
{
|
||||
if (m_finalizer)
|
||||
{
|
||||
m_finalizer(); // must not throw
|
||||
m_finalizer = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
ScopeGuard(const ScopeGuard&) = delete;
|
||||
|
||||
void operator=(const ScopeGuard&) = delete;
|
||||
|
||||
private:
|
||||
std::function<void()> m_finalizer;
|
||||
};
|
||||
|
||||
} // Namespace Common
|
Reference in New Issue
Block a user