summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/client_session.cpp
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-09-14 22:39:05 +0200
committerGitHub <noreply@github.com>2020-09-14 22:39:05 +0200
commit1a9774f824c3ae75e9344d897deec19ba871f059 (patch)
tree44638c8d178116c2d990bae4a9dfa7319f36cdaa /src/core/hle/kernel/client_session.cpp
parentMerge pull request #4636 from lioncash/kernel-hle (diff)
parentkernel: Remove all dependencies on the global system instance (diff)
downloadyuzu-1a9774f824c3ae75e9344d897deec19ba871f059.tar
yuzu-1a9774f824c3ae75e9344d897deec19ba871f059.tar.gz
yuzu-1a9774f824c3ae75e9344d897deec19ba871f059.tar.bz2
yuzu-1a9774f824c3ae75e9344d897deec19ba871f059.tar.lz
yuzu-1a9774f824c3ae75e9344d897deec19ba871f059.tar.xz
yuzu-1a9774f824c3ae75e9344d897deec19ba871f059.tar.zst
yuzu-1a9774f824c3ae75e9344d897deec19ba871f059.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/client_session.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/client_session.cpp b/src/core/hle/kernel/client_session.cpp
index 5ab204b9b..be9eba519 100644
--- a/src/core/hle/kernel/client_session.cpp
+++ b/src/core/hle/kernel/client_session.cpp
@@ -48,14 +48,15 @@ ResultVal<std::shared_ptr<ClientSession>> ClientSession::Create(KernelCore& kern
}
ResultCode ClientSession::SendSyncRequest(std::shared_ptr<Thread> thread,
- Core::Memory::Memory& memory) {
+ Core::Memory::Memory& memory,
+ Core::Timing::CoreTiming& core_timing) {
// Keep ServerSession alive until we're done working with it.
if (!parent->Server()) {
return ERR_SESSION_CLOSED_BY_REMOTE;
}
// Signal the server session that new data is available
- return parent->Server()->HandleSyncRequest(std::move(thread), memory);
+ return parent->Server()->HandleSyncRequest(std::move(thread), memory, core_timing);
}
} // namespace Kernel