summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/session.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-19 02:40:53 +0100
committerbunnei <bunneidev@gmail.com>2015-01-22 02:47:47 +0100
commit9e6ec3b6cd23a7cef80a1d62fda515018f080083 (patch)
treee1657378ee0bce660d4c5a53f8d4a4ebc35d6d67 /src/core/hle/kernel/session.h
parentKernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs. (diff)
downloadyuzu-9e6ec3b6cd23a7cef80a1d62fda515018f080083.tar
yuzu-9e6ec3b6cd23a7cef80a1d62fda515018f080083.tar.gz
yuzu-9e6ec3b6cd23a7cef80a1d62fda515018f080083.tar.bz2
yuzu-9e6ec3b6cd23a7cef80a1d62fda515018f080083.tar.lz
yuzu-9e6ec3b6cd23a7cef80a1d62fda515018f080083.tar.xz
yuzu-9e6ec3b6cd23a7cef80a1d62fda515018f080083.tar.zst
yuzu-9e6ec3b6cd23a7cef80a1d62fda515018f080083.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/session.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/kernel/session.h b/src/core/hle/kernel/session.h
index 91f3ffc2c..e11f727a5 100644
--- a/src/core/hle/kernel/session.h
+++ b/src/core/hle/kernel/session.h
@@ -41,7 +41,7 @@ inline static u32* GetCommandBuffer(const int offset=0) {
* CTR-OS so that IPC calls can be optionally handled by the real implementations of processes, as
* opposed to HLE simulations.
*/
-class Session : public Object {
+class Session : public WaitObject {
public:
std::string GetTypeName() const override { return "Session"; }
@@ -53,6 +53,12 @@ public:
* aren't supported yet.
*/
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?
+ return MakeResult<bool>(true);
+ }
};
}