2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services;
|
2018-03-19 19:58:46 +01:00
|
|
|
using System;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
2018-03-19 19:58:46 +01:00
|
|
|
{
|
|
|
|
class KSession : IDisposable
|
|
|
|
{
|
|
|
|
public IpcService Service { get; private set; }
|
|
|
|
|
2018-04-06 07:38:59 +02:00
|
|
|
public string ServiceName { get; private set; }
|
|
|
|
|
|
|
|
public KSession(IpcService Service, string ServiceName)
|
2018-03-19 19:58:46 +01:00
|
|
|
{
|
2018-04-06 07:38:59 +02:00
|
|
|
this.Service = Service;
|
|
|
|
this.ServiceName = ServiceName;
|
2018-03-19 19:58:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
|
|
{
|
|
|
|
if (Disposing && Service is IDisposable DisposableService)
|
|
|
|
{
|
|
|
|
DisposableService.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|