From c68eb1569549ae49ae25c6c29cec2e10d8329f2d Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 20 Jan 2015 17:41:12 -0500 Subject: WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual. --- src/core/hle/kernel/session.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/core/hle/kernel/session.h') diff --git a/src/core/hle/kernel/session.h b/src/core/hle/kernel/session.h index e11f727a5..f0343d9b2 100644 --- a/src/core/hle/kernel/session.h +++ b/src/core/hle/kernel/session.h @@ -54,11 +54,16 @@ public: */ virtual ResultVal SyncRequest() = 0; - ResultVal Wait() override { - // TODO(bunnei): This function exists to satisfy a hardware test with a Session object - // passed into WaitSynchronization. Not sure if it's possible for this to ever be false? + // TODO(bunnei): These functions exist to satisfy a hardware test with a Session object + // passed into WaitSynchronization. Figure out the meaning of them. + + ResultVal ShouldWait() override { return MakeResult(true); } + + ResultVal Acquire() override { + return MakeResult(false); + } }; } -- cgit v1.2.3