0039bb6394
* Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders
31 lines
No EOL
702 B
C#
31 lines
No EOL
702 B
C#
using Ryujinx.HLE.HOS.Services;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|
{
|
|
class KSession : IDisposable
|
|
{
|
|
public IpcService Service { get; private set; }
|
|
|
|
public string ServiceName { get; private set; }
|
|
|
|
public KSession(IpcService service, string serviceName)
|
|
{
|
|
Service = service;
|
|
ServiceName = serviceName;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(true);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (disposing && Service is IDisposable disposableService)
|
|
{
|
|
disposableService.Dispose();
|
|
}
|
|
}
|
|
}
|
|
} |