2018-02-17 18:36:08 -03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-02-20 17:09:23 -03:00
|
|
|
namespace Ryujinx.Core.OsHle.Handles
|
2018-02-04 20:08:20 -03:00
|
|
|
{
|
|
|
|
class HSharedMem
|
|
|
|
{
|
2018-02-17 18:36:08 -03:00
|
|
|
private List<long> Positions;
|
|
|
|
|
|
|
|
public EventHandler<EventArgs> MemoryMapped;
|
|
|
|
public EventHandler<EventArgs> MemoryUnmapped;
|
2018-02-04 20:08:20 -03:00
|
|
|
|
2018-02-27 20:45:07 -03:00
|
|
|
public HSharedMem()
|
2018-02-04 20:08:20 -03:00
|
|
|
{
|
2018-02-17 18:36:08 -03:00
|
|
|
Positions = new List<long>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void AddVirtualPosition(long Position)
|
|
|
|
{
|
|
|
|
lock (Positions)
|
|
|
|
{
|
|
|
|
Positions.Add(Position);
|
|
|
|
|
2018-02-20 07:54:00 -03:00
|
|
|
MemoryMapped?.Invoke(this, EventArgs.Empty);
|
2018-02-17 18:36:08 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void RemoveVirtualPosition(long Position)
|
|
|
|
{
|
|
|
|
lock (Positions)
|
|
|
|
{
|
|
|
|
Positions.Remove(Position);
|
|
|
|
|
2018-02-20 07:54:00 -03:00
|
|
|
MemoryUnmapped?.Invoke(this, EventArgs.Empty);
|
2018-02-17 18:36:08 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 02:09:52 -03:00
|
|
|
public long[] GetVirtualPositions()
|
2018-02-17 18:36:08 -03:00
|
|
|
{
|
2018-03-05 02:09:52 -03:00
|
|
|
return Positions.ToArray();
|
2018-02-04 20:08:20 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|