mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 23:56:39 +00:00
0039bb6394
* Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders
16 lines
No EOL
327 B
C#
16 lines
No EOL
327 B
C#
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|
{
|
|
class KServerPort : KSynchronizationObject
|
|
{
|
|
private KPort _parent;
|
|
|
|
public KServerPort(Horizon system) : base(system) { }
|
|
|
|
public void Initialize(KPort parent)
|
|
{
|
|
_parent = parent;
|
|
}
|
|
}
|
|
} |