kern: implement SvcAcceptSession

This commit is contained in:
Michael Scire 2020-07-09 17:49:33 -07:00
parent f52232f0f2
commit 78da7422ae
4 changed files with 67 additions and 3 deletions

View file

@ -41,6 +41,9 @@ namespace ams::kern {
void EnqueueSession(KServerSession *session);
void EnqueueSession(KLightServerSession *session);
KServerSession *AcceptSession();
KLightServerSession *AcceptLightSession();
constexpr const KPort *GetParent() const { return this->parent; }
bool IsLight() const;