Ryujinx/Ryujinx.HLE/HOS/Kernel/KClientPort.cs

31 lines
799 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Kernel
{
class KClientPort : KSynchronizationObject
{
2018-12-01 21:01:59 +01:00
private int _sessionsCount;
private int _currentCapacity;
private int _maxSessions;
2018-12-01 21:01:59 +01:00
private KPort _parent;
2018-12-01 21:01:59 +01:00
public KClientPort(Horizon system) : base(system) { }
2018-12-01 21:01:59 +01:00
public void Initialize(KPort parent, int maxSessions)
{
2018-12-01 21:24:37 +01:00
_maxSessions = maxSessions;
_parent = parent;
}
2018-12-01 21:01:59 +01:00
public new static KernelResult RemoveName(Horizon system, string name)
{
2018-12-01 21:24:37 +01:00
KAutoObject foundObj = FindNamedObject(system, name);
2018-12-01 21:01:59 +01:00
if (!(foundObj is KClientPort))
{
return KernelResult.NotFound;
}
2018-12-01 21:01:59 +01:00
return KAutoObject.RemoveName(system, name);
}
}
}