kernel: implement remaining IPC syscalls

This commit is contained in:
Liam
2023-12-06 17:29:32 -05:00
parent 8a79dd2d6c
commit 40bb176c39
6 changed files with 252 additions and 113 deletions

View File

@ -46,6 +46,10 @@ public:
return this->GetState() != State::Normal;
}
Result OnRequest(KSessionRequest* request) {
R_RETURN(m_server.OnRequest(request));
}
KClientSession& GetClientSession() {
return m_client;
}