mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 22:18:47 +00:00
21 lines
439 B
C#
21 lines
439 B
C#
using System;
|
|
using System.Threading;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services
|
|
{
|
|
abstract class DisposableIpcService : IpcService, IDisposable
|
|
{
|
|
private int _disposeState;
|
|
|
|
protected abstract void Dispose(bool isDisposing);
|
|
|
|
public void Dispose()
|
|
{
|
|
if (Interlocked.CompareExchange(ref _disposeState, 1, 0) == 0)
|
|
{
|
|
Dispose(true);
|
|
}
|
|
}
|
|
}
|
|
}
|