Merge pull request #2839 from Subv/global_kernel_lock

Kernel/HLE: Use a mutex  to synchronize access to the HLE kernel state between the cpu thread and any other possible threads that might touch the kernel (network thread, etc).
This commit is contained in:
James Rowe 2017-08-23 18:17:44 -06:00 committed by GitHub
commit 61442d6afb
6 changed files with 46 additions and 4 deletions

View file

@ -132,4 +132,4 @@ void Init(u32 system_mode);
/// Shutdown the kernel
void Shutdown();
} // namespace
} // namespace Kernel