summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/session.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-20 23:41:12 +0100
committerbunnei <bunneidev@gmail.com>2015-01-22 02:47:49 +0100
commitc68eb1569549ae49ae25c6c29cec2e10d8329f2d (patch)
tree4a8683aac99095884acaf488aa4d059f861138b3 /src/core/hle/kernel/session.h
parentEvent: Fix implementation of "non-sticky" events. (diff)
downloadyuzu-c68eb1569549ae49ae25c6c29cec2e10d8329f2d.tar
yuzu-c68eb1569549ae49ae25c6c29cec2e10d8329f2d.tar.gz
yuzu-c68eb1569549ae49ae25c6c29cec2e10d8329f2d.tar.bz2
yuzu-c68eb1569549ae49ae25c6c29cec2e10d8329f2d.tar.lz
yuzu-c68eb1569549ae49ae25c6c29cec2e10d8329f2d.tar.xz
yuzu-c68eb1569549ae49ae25c6c29cec2e10d8329f2d.tar.zst
yuzu-c68eb1569549ae49ae25c6c29cec2e10d8329f2d.zip
Diffstat (limited to 'src/core/hle/kernel/session.h')
-rw-r--r--src/core/hle/kernel/session.h11
1 files changed, 8 insertions, 3 deletions
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<bool> SyncRequest() = 0;
- ResultVal<bool> 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<bool> ShouldWait() override {
return MakeResult<bool>(true);
}
+
+ ResultVal<bool> Acquire() override {
+ return MakeResult<bool>(false);
+ }
};
}