mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-21 05:13:14 +02:00
62 lines
1.4 KiB
C#
62 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
|
|
namespace Ryujinx.Graphics.GAL.Multithreading
|
|
{
|
|
class SyncMap : IDisposable
|
|
{
|
|
private readonly HashSet<ulong> _inFlight = [];
|
|
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();
|
|
}
|
|
}
|
|
}
|