diff options
Diffstat (limited to 'src/core/hle/kernel/session.cpp')
| -rw-r--r-- | src/core/hle/kernel/session.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/hle/kernel/session.cpp b/src/core/hle/kernel/session.cpp index dee6e2b72..e4dd53e24 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) : WaitObject{kernel} {} | 12 | Session::Session(KernelCore& kernel) : SynchronizationObject{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) { |
| @@ -29,6 +29,11 @@ bool Session::ShouldWait(const Thread* thread) const { | |||
| 29 | return {}; | 29 | return {}; |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | bool Session::IsSignaled() const { | ||
| 33 | UNIMPLEMENTED(); | ||
| 34 | return true; | ||
| 35 | } | ||
| 36 | |||
| 32 | void Session::Acquire(Thread* thread) { | 37 | void Session::Acquire(Thread* thread) { |
| 33 | UNIMPLEMENTED(); | 38 | UNIMPLEMENTED(); |
| 34 | } | 39 | } |