summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_session.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-10 01:03:56 +0100
committerGitHub <noreply@github.com>2023-12-10 01:03:56 +0100
commit875568bb3e34725578f7fa3661c8bad89f23a173 (patch)
tree966c08ba52f4e786765eef72848013a4c7aa559f /src/core/hle/kernel/k_session.h
parentMerge pull request #12299 from liamwhite/light-ipc (diff)
parentkernel: implement remaining IPC syscalls (diff)
downloadyuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.gz
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.bz2
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.lz
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.xz
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.tar.zst
yuzu-875568bb3e34725578f7fa3661c8bad89f23a173.zip
Diffstat (limited to 'src/core/hle/kernel/k_session.h')
-rw-r--r--src/core/hle/kernel/k_session.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_session.h b/src/core/hle/kernel/k_session.h
index f69bab088..3f4dd5989 100644
--- a/src/core/hle/kernel/k_session.h
+++ b/src/core/hle/kernel/k_session.h
@@ -46,6 +46,10 @@ public:
return this->GetState() != State::Normal;
}
+ Result OnRequest(KSessionRequest* request) {
+ R_RETURN(m_server.OnRequest(request));
+ }
+
KClientSession& GetClientSession() {
return m_client;
}