summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/sm
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-03-07 02:34:25 +0100
committerLiam <byteslice@airmail.cc>2023-03-13 03:06:53 +0100
commit097c25b164ba830b8d4a89926a3e90d297d06d8f (patch)
tree646caab83e97e60249ed102596a968be10acfec8 /src/core/hle/service/sm
parentkernel: convert GlobalSchedulerContext, KAddressArbiter, KScopedSchedulerLockAndSleep, KThreadQueue to new style (diff)
downloadyuzu-097c25b164ba830b8d4a89926a3e90d297d06d8f.tar
yuzu-097c25b164ba830b8d4a89926a3e90d297d06d8f.tar.gz
yuzu-097c25b164ba830b8d4a89926a3e90d297d06d8f.tar.bz2
yuzu-097c25b164ba830b8d4a89926a3e90d297d06d8f.tar.lz
yuzu-097c25b164ba830b8d4a89926a3e90d297d06d8f.tar.xz
yuzu-097c25b164ba830b8d4a89926a3e90d297d06d8f.tar.zst
yuzu-097c25b164ba830b8d4a89926a3e90d297d06d8f.zip
Diffstat (limited to 'src/core/hle/service/sm')
-rw-r--r--src/core/hle/service/sm/sm.cpp4
-rw-r--r--src/core/hle/service/sm/sm_controller.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/sm/sm.cpp b/src/core/hle/service/sm/sm.cpp
index b4046d3ce..c45be5726 100644
--- a/src/core/hle/service/sm/sm.cpp
+++ b/src/core/hle/service/sm/sm.cpp
@@ -62,7 +62,7 @@ Result ServiceManager::RegisterService(std::string name, u32 max_sessions,
}
auto* port = Kernel::KPort::Create(kernel);
- port->Initialize(ServerSessionCountMax, false, name);
+ port->Initialize(ServerSessionCountMax, false, 0);
service_ports.emplace(name, port);
registered_services.emplace(name, handler);
@@ -211,7 +211,7 @@ void SM::RegisterService(HLERequestContext& ctx) {
}
auto* port = Kernel::KPort::Create(kernel);
- port->Initialize(ServerSessionCountMax, is_light, name);
+ port->Initialize(ServerSessionCountMax, is_light, 0);
SCOPE_EXIT({ port->GetClientPort().Close(); });
IPC::ResponseBuilder rb{ctx, 2, 0, 1, IPC::ResponseBuilder::Flags::AlwaysMoveHandles};
diff --git a/src/core/hle/service/sm/sm_controller.cpp b/src/core/hle/service/sm/sm_controller.cpp
index 0111c8d7f..419c1df2b 100644
--- a/src/core/hle/service/sm/sm_controller.cpp
+++ b/src/core/hle/service/sm/sm_controller.cpp
@@ -44,7 +44,7 @@ void Controller::CloneCurrentObject(HLERequestContext& ctx) {
ASSERT(session != nullptr);
// Initialize the session.
- session->Initialize(nullptr, "");
+ session->Initialize(nullptr, 0);
// Commit the session reservation.
session_reservation.Commit();