summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_client_session.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-10-12 00:16:56 +0200
committerLiam <byteslice@airmail.cc>2022-10-12 00:40:40 +0200
commit61a8696510b3bca120f1f0289a3829e3db14834e (patch)
tree34239a299b7cd842e46df21626f6b190e9b40d14 /src/core/hle/kernel/k_client_session.cpp
parentAdd implementation of svcCreateSession (diff)
downloadyuzu-61a8696510b3bca120f1f0289a3829e3db14834e.tar
yuzu-61a8696510b3bca120f1f0289a3829e3db14834e.tar.gz
yuzu-61a8696510b3bca120f1f0289a3829e3db14834e.tar.bz2
yuzu-61a8696510b3bca120f1f0289a3829e3db14834e.tar.lz
yuzu-61a8696510b3bca120f1f0289a3829e3db14834e.tar.xz
yuzu-61a8696510b3bca120f1f0289a3829e3db14834e.tar.zst
yuzu-61a8696510b3bca120f1f0289a3829e3db14834e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_client_session.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/kernel/k_client_session.cpp b/src/core/hle/kernel/k_client_session.cpp
index b2a887b14..8892c5b7c 100644
--- a/src/core/hle/kernel/k_client_session.cpp
+++ b/src/core/hle/kernel/k_client_session.cpp
@@ -21,10 +21,9 @@ void KClientSession::Destroy() {
void KClientSession::OnServerClosed() {}
-Result KClientSession::SendSyncRequest(KThread* thread, Core::Memory::Memory& memory,
- Core::Timing::CoreTiming& core_timing) {
+Result KClientSession::SendSyncRequest() {
// Signal the server session that new data is available
- return parent->GetServerSession().HandleSyncRequest(thread, memory, core_timing);
+ return parent->GetServerSession().OnRequest();
}
} // namespace Kernel