2019-01-18 23:26:39 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|
|
|
{
|
|
|
|
class KLightSession : KAutoObject
|
|
|
|
{
|
|
|
|
public KLightServerSession ServerSession { get; }
|
|
|
|
public KLightClientSession ClientSession { get; }
|
|
|
|
|
2020-05-04 05:41:29 +02:00
|
|
|
public KLightSession(KernelContext context) : base(context)
|
2019-01-18 23:26:39 +01:00
|
|
|
{
|
2020-05-04 05:41:29 +02:00
|
|
|
ServerSession = new KLightServerSession(context, this);
|
|
|
|
ClientSession = new KLightClientSession(context, this);
|
2019-01-18 23:26:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|