diff options
Diffstat (limited to 'src/core/hle/kernel/session.cpp')
| -rw-r--r-- | src/core/hle/kernel/session.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/core/hle/kernel/session.cpp b/src/core/hle/kernel/session.cpp index e4dd53e24..75304b961 100644 --- a/src/core/hle/kernel/session.cpp +++ b/src/core/hle/kernel/session.cpp | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | namespace Kernel { | 10 | namespace Kernel { |
| 11 | 11 | ||
| 12 | Session::Session(KernelCore& kernel) : SynchronizationObject{kernel} {} | 12 | Session::Session(KernelCore& kernel) : KSynchronizationObject{kernel} {} |
| 13 | Session::~Session() = default; | 13 | Session::~Session() = default; |
| 14 | 14 | ||
| 15 | Session::SessionPair Session::Create(KernelCore& kernel, std::string name) { | 15 | Session::SessionPair Session::Create(KernelCore& kernel, std::string name) { |
| @@ -24,18 +24,9 @@ Session::SessionPair Session::Create(KernelCore& kernel, std::string name) { | |||
| 24 | return std::make_pair(std::move(client_session), std::move(server_session)); | 24 | return std::make_pair(std::move(client_session), std::move(server_session)); |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | bool Session::ShouldWait(const Thread* thread) const { | ||
| 28 | UNIMPLEMENTED(); | ||
| 29 | return {}; | ||
| 30 | } | ||
| 31 | |||
| 32 | bool Session::IsSignaled() const { | 27 | bool Session::IsSignaled() const { |
| 33 | UNIMPLEMENTED(); | 28 | UNIMPLEMENTED(); |
| 34 | return true; | 29 | return true; |
| 35 | } | 30 | } |
| 36 | 31 | ||
| 37 | void Session::Acquire(Thread* thread) { | ||
| 38 | UNIMPLEMENTED(); | ||
| 39 | } | ||
| 40 | |||
| 41 | } // namespace Kernel | 32 | } // namespace Kernel |