diff options
| author | bunnei <bunneidev@gmail.com> | 2019-11-30 18:56:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-30 18:56:35 -0500 |
| commit | 5c7253f8d3c010c0a0e5c91db497819829cb4a43 (patch) | |
| tree | c2aa6989d3f081c07c72c3ab4a698c73ecd8c429 /src/core/hle/kernel/client_session.h | |
| parent | 930b7c18a6d73d2365c8c2b868279fe5d44630d3 (diff) | |
| parent | c3d3b173d39b7c12fa9b3d5d34040e9377f2888e (diff) | |
Merge pull request #3177 from bunnei/new-ipc-req
kernel: Implement a more accurate IPC dispatch.
Diffstat (limited to 'src/core/hle/kernel/client_session.h')
| -rw-r--r-- | src/core/hle/kernel/client_session.h | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/core/hle/kernel/client_session.h b/src/core/hle/kernel/client_session.h index 484dd7bc9..b4289a9a8 100644 --- a/src/core/hle/kernel/client_session.h +++ b/src/core/hle/kernel/client_session.h @@ -1,4 +1,4 @@ -// Copyright 2016 Citra Emulator Project +// Copyright 2019 yuzu emulator team // Licensed under GPLv2 or any later version // Refer to the license.txt file included. @@ -6,7 +6,9 @@ #include <memory> #include <string> -#include "core/hle/kernel/object.h" + +#include "core/hle/kernel/wait_object.h" +#include "core/hle/result.h" union ResultCode; @@ -18,15 +20,14 @@ namespace Kernel { class KernelCore; class Session; -class ServerSession; class Thread; -class ClientSession final : public Object { +class ClientSession final : public WaitObject { public: explicit ClientSession(KernelCore& kernel); ~ClientSession() override; - friend class ServerSession; + friend class Session; std::string GetTypeName() const override { return "ClientSession"; @@ -41,9 +42,17 @@ public: return HANDLE_TYPE; } - ResultCode SendSyncRequest(Thread* thread, Memory::Memory& memory); + ResultCode SendSyncRequest(std::shared_ptr<Thread> thread, Memory::Memory& memory); + + bool ShouldWait(const Thread* thread) const override; + + void Acquire(Thread* thread) override; private: + static ResultVal<std::shared_ptr<ClientSession>> Create(KernelCore& kernel, + std::shared_ptr<Session> parent, + std::string name = "Unknown"); + /// The parent session, which links to the server endpoint. std::shared_ptr<Session> parent; |
