mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 03:08:40 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
31 lines
815 B
C#
31 lines
815 B
C#
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
class KClientPort : KSynchronizationObject
|
|
{
|
|
private int SessionsCount;
|
|
private int CurrentCapacity;
|
|
private int MaxSessions;
|
|
|
|
private KPort Parent;
|
|
|
|
public KClientPort(Horizon System) : base(System) { }
|
|
|
|
public void Initialize(KPort Parent, int MaxSessions)
|
|
{
|
|
this.MaxSessions = MaxSessions;
|
|
this.Parent = Parent;
|
|
}
|
|
|
|
public new static KernelResult RemoveName(Horizon System, string Name)
|
|
{
|
|
KAutoObject FoundObj = KAutoObject.FindNamedObject(System, Name);
|
|
|
|
if (!(FoundObj is KClientPort))
|
|
{
|
|
return KernelResult.NotFound;
|
|
}
|
|
|
|
return KAutoObject.RemoveName(System, Name);
|
|
}
|
|
}
|
|
} |