diff options
author | bunnei <bunneidev@gmail.com> | 2021-01-11 23:36:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 23:36:26 +0100 |
commit | eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a (patch) | |
tree | 56a80760bd0ba8ecd85dc8d9f09fb9e2068c91d4 /src/core/hle/kernel/client_session.h | |
parent | Merge pull request #5229 from Morph1984/fullscreen-opt (diff) | |
parent | hle: kernel: thread: Preserve thread wait reason for debugging only. (diff) | |
download | yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.tar yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.tar.gz yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.tar.bz2 yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.tar.lz yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.tar.xz yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.tar.zst yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.zip |
Diffstat (limited to 'src/core/hle/kernel/client_session.h')
-rw-r--r-- | src/core/hle/kernel/client_session.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/core/hle/kernel/client_session.h b/src/core/hle/kernel/client_session.h index e5e0690c2..d5c9ebee8 100644 --- a/src/core/hle/kernel/client_session.h +++ b/src/core/hle/kernel/client_session.h @@ -7,7 +7,7 @@ #include <memory> #include <string> -#include "core/hle/kernel/synchronization_object.h" +#include "core/hle/kernel/k_synchronization_object.h" #include "core/hle/result.h" union ResultCode; @@ -26,7 +26,7 @@ class KernelCore; class Session; class Thread; -class ClientSession final : public SynchronizationObject { +class ClientSession final : public KSynchronizationObject { public: explicit ClientSession(KernelCore& kernel); ~ClientSession() override; @@ -49,10 +49,6 @@ public: ResultCode SendSyncRequest(std::shared_ptr<Thread> thread, Core::Memory::Memory& memory, Core::Timing::CoreTiming& core_timing); - bool ShouldWait(const Thread* thread) const override; - - void Acquire(Thread* thread) override; - bool IsSignaled() const override; private: |