b2b736abc2
* Fix typos * Remove unneeded using statements * Enforce var style more * Remove redundant qualifiers * Fix some indentation * Disable naming warnings on files with external enum names * Fix build * Mass find & replace for comments with no spacing * Standardize todo capitalization and for/if spacing
60 lines
No EOL
1.7 KiB
C#
60 lines
No EOL
1.7 KiB
C#
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
using Ryujinx.HLE.HOS.Services;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|
{
|
|
class KClientSession : KSynchronizationObject
|
|
{
|
|
public KProcess CreatorProcess { get; }
|
|
|
|
private KSession _parent;
|
|
|
|
public ChannelState State { get; set; }
|
|
|
|
// TODO: Remove that, we need it for now to allow HLE
|
|
// services implementation to work with the new IPC system.
|
|
public IpcService Service { get; set; }
|
|
|
|
public KClientSession(Horizon system, KSession parent) : base(system)
|
|
{
|
|
_parent = parent;
|
|
|
|
State = ChannelState.Open;
|
|
|
|
CreatorProcess = system.Scheduler.GetCurrentProcess();
|
|
|
|
CreatorProcess.IncrementReferenceCount();
|
|
}
|
|
|
|
public KernelResult SendSyncRequest(ulong customCmdBuffAddr = 0, ulong customCmdBuffSize = 0)
|
|
{
|
|
KThread currentThread = System.Scheduler.GetCurrentThread();
|
|
|
|
KSessionRequest request = new KSessionRequest(currentThread, customCmdBuffAddr, customCmdBuffSize);
|
|
|
|
System.CriticalSection.Enter();
|
|
|
|
currentThread.SignaledObj = null;
|
|
currentThread.ObjSyncResult = KernelResult.Success;
|
|
|
|
KernelResult result = _parent.ServerSession.EnqueueRequest(request);
|
|
|
|
System.CriticalSection.Leave();
|
|
|
|
if (result == KernelResult.Success)
|
|
{
|
|
result = currentThread.ObjSyncResult;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
protected override void Destroy()
|
|
{
|
|
_parent.DisconnectClient();
|
|
_parent.DecrementReferenceCount();
|
|
}
|
|
}
|
|
} |