summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/client_session.h
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2017-06-30 00:05:22 +0200
committerGitHub <noreply@github.com>2017-06-30 00:05:22 +0200
commit56d718b2a1d6385c88c2044f780280a5dfbc6072 (patch)
treea74b2c67bde47be93f2b2c3d55292bfbb421985a /src/core/hle/kernel/client_session.h
parentMerge pull request #2809 from wwylele/texture-copy-fix (diff)
parentKernel/SVC: Pass the current thread as a parameter to ClientSession::SendSyncRequest. (diff)
downloadyuzu-56d718b2a1d6385c88c2044f780280a5dfbc6072.tar
yuzu-56d718b2a1d6385c88c2044f780280a5dfbc6072.tar.gz
yuzu-56d718b2a1d6385c88c2044f780280a5dfbc6072.tar.bz2
yuzu-56d718b2a1d6385c88c2044f780280a5dfbc6072.tar.lz
yuzu-56d718b2a1d6385c88c2044f780280a5dfbc6072.tar.xz
yuzu-56d718b2a1d6385c88c2044f780280a5dfbc6072.tar.zst
yuzu-56d718b2a1d6385c88c2044f780280a5dfbc6072.zip
Diffstat (limited to 'src/core/hle/kernel/client_session.h')
-rw-r--r--src/core/hle/kernel/client_session.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/kernel/client_session.h b/src/core/hle/kernel/client_session.h
index 2de379c09..daf521529 100644
--- a/src/core/hle/kernel/client_session.h
+++ b/src/core/hle/kernel/client_session.h
@@ -14,6 +14,7 @@ namespace Kernel {
class ServerSession;
class Session;
+class Thread;
class ClientSession final : public Object {
public:
@@ -34,9 +35,10 @@ public:
/**
* Sends an SyncRequest from the current emulated thread.
+ * @param thread Thread that initiated the request.
* @return ResultCode of the operation.
*/
- ResultCode SendSyncRequest();
+ ResultCode SendSyncRequest(SharedPtr<Thread> thread);
std::string name; ///< Name of client port (optional)