diff options
| author | bunnei <bunneidev@gmail.com> | 2018-01-23 16:13:19 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-01-24 22:18:54 -0500 |
| commit | 67758857e4203cebc9a5815c6b0293c0aad0e598 (patch) | |
| tree | 6d39ebcb39695f3117864416c56d16edb4611514 /src/core/hle/kernel/svc.cpp | |
| parent | 932fa94af747a59fa6f69aab6dff1fd9a802def4 (diff) | |
hle: Remove Domain and SyncObject kernel objects.
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 516309036..4c0276cf0 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -20,7 +20,6 @@ #include "core/hle/kernel/shared_memory.h" #include "core/hle/kernel/svc.h" #include "core/hle/kernel/svc_wrap.h" -#include "core/hle/kernel/sync_object.h" #include "core/hle/kernel/thread.h" #include "core/hle/lock.h" #include "core/hle/result.h" @@ -87,7 +86,7 @@ static ResultCode ConnectToNamedPort(Handle* out_handle, VAddr port_name_address /// Makes a blocking IPC call to an OS service. static ResultCode SendSyncRequest(Handle handle) { - SharedPtr<SyncObject> session = g_handle_table.Get<SyncObject>(handle); + SharedPtr<ClientSession> session = g_handle_table.Get<ClientSession>(handle); if (!session) { LOG_ERROR(Kernel_SVC, "called with invalid handle=0x%08X", handle); return ERR_INVALID_HANDLE; |
