kernel: convert KPort, KSession
This commit is contained in:
parent
d24ab14126
commit
097c25b164
28 changed files with 196 additions and 226 deletions
|
@ -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};
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue