aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/DisposableIpcService.cs
blob: b06158a86f74912157a1107398f7a9c2a0c9c284 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Threading;

namespace Ryujinx.HLE.HOS.Services
{
    abstract class DisposableIpcService : IpcService, IDisposable
    {
        private int _disposeState;

        public DisposableIpcService(ServerBase server = null) : base(server) { }

        protected abstract void Dispose(bool isDisposing);

        public void Dispose()
        {
            if (Interlocked.CompareExchange(ref _disposeState, 1, 0) == 0)
            {
                Dispose(true);
            }
        }
    }
}