blob: ecdff492272ec1d770392d5933782f5def6cafff (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
using System;
using System.Collections.Generic;
using System.Threading;
namespace Ryujinx.Graphics.GAL.Multithreading
{
class SyncMap : IDisposable
{
private readonly HashSet<ulong> _inFlight = new();
private readonly AutoResetEvent _inFlightChanged = new(false);
internal void CreateSyncHandle(ulong id)
{
lock (_inFlight)
{
_inFlight.Add(id);
}
}
internal void AssignSync(ulong id)
{
lock (_inFlight)
{
_inFlight.Remove(id);
}
_inFlightChanged.Set();
}
internal void WaitSyncAvailability(ulong id)
{
// Blocks until the handle is available.
bool signal = false;
while (true)
{
lock (_inFlight)
{
if (!_inFlight.Contains(id))
{
break;
}
}
_inFlightChanged.WaitOne();
signal = true;
}
if (signal)
{
// Signal other threads which might still be waiting.
_inFlightChanged.Set();
}
}
public void Dispose()
{
_inFlightChanged.Dispose();
}
}
}
|