blob: 31bf8329bd1e1cd89b83bed83645c745d0b7397c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System.Threading;
namespace Ryujinx.HLE.HOS.Services.Nv.NvMap
{
class NvMapHandle
{
public int Handle;
public int Id;
public int Size;
public int Align;
public int Kind;
public long Address;
public bool Allocated;
public long DmaMapAddress;
private long _dupes;
public NvMapHandle()
{
_dupes = 1;
}
public NvMapHandle(int size) : this()
{
Size = size;
}
public void IncrementRefCount()
{
Interlocked.Increment(ref _dupes);
}
public long DecrementRefCount()
{
return Interlocked.Decrement(ref _dupes);
}
}
}
|