diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-03-03 20:50:38 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 17:35:23 +0200 |
commit | 07993ac8c8c66bbf638dddc7750106f6dfb0e09b (patch) | |
tree | dae8c8249f66657e232dc2620489d237e17459c8 /src/core/hle/kernel/svc.cpp | |
parent | Kernel: Correct Signal on Thread Death and Setup Sync Objects on Thread for Debugging (diff) | |
download | yuzu-07993ac8c8c66bbf638dddc7750106f6dfb0e09b.tar yuzu-07993ac8c8c66bbf638dddc7750106f6dfb0e09b.tar.gz yuzu-07993ac8c8c66bbf638dddc7750106f6dfb0e09b.tar.bz2 yuzu-07993ac8c8c66bbf638dddc7750106f6dfb0e09b.tar.lz yuzu-07993ac8c8c66bbf638dddc7750106f6dfb0e09b.tar.xz yuzu-07993ac8c8c66bbf638dddc7750106f6dfb0e09b.tar.zst yuzu-07993ac8c8c66bbf638dddc7750106f6dfb0e09b.zip |
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 9f46a1758..5e9dd43bf 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -316,7 +316,6 @@ static ResultCode ConnectToNamedPort32(Core::System& system, Handle* out_handle, /// Makes a blocking IPC call to an OS service. static ResultCode SendSyncRequest(Core::System& system, Handle handle) { - std::lock_guard lock{HLE::g_hle_lock}; const auto& handle_table = system.Kernel().CurrentProcess()->GetHandleTable(); std::shared_ptr<ClientSession> session = handle_table.Get<ClientSession>(handle); if (!session) { |