summaryrefslogtreecommitdiffstats
path: root/src/core/hle/ipc_helpers.h
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/ipc_helpers.h
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/ipc_helpers.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index d631c0357..0cc26a211 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -152,7 +152,8 @@ public:
Kernel::LimitableResource::Sessions, 1);
auto* session = Kernel::KSession::Create(kernel);
- session->Initialize(nullptr, iface->GetServiceName());
+ session->Initialize(nullptr, iface->GetServiceName(),
+ std::make_shared<Kernel::SessionRequestManager>(kernel));
context->AddMoveObject(&session->GetClientSession());
iface->ClientConnected(&session->GetServerSession());