2018-03-12 04:04:52 +00:00
|
|
|
using ChocolArm64.Memory;
|
2018-02-17 21:36:08 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-11 00:46:42 +00:00
|
|
|
namespace Ryujinx.HLE.OsHle.Handles
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
class HSharedMem
|
|
|
|
{
|
2018-08-04 21:38:49 +00:00
|
|
|
private List<(AMemory, long, long)> Positions;
|
2018-02-17 21:36:08 +00:00
|
|
|
|
|
|
|
public EventHandler<EventArgs> MemoryMapped;
|
|
|
|
public EventHandler<EventArgs> MemoryUnmapped;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-02-27 23:45:07 +00:00
|
|
|
public HSharedMem()
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-08-04 21:38:49 +00:00
|
|
|
Positions = new List<(AMemory, long, long)>();
|
2018-02-17 21:36:08 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 21:38:49 +00:00
|
|
|
public void AddVirtualPosition(AMemory Memory, long Position, long Size)
|
2018-02-17 21:36:08 +00:00
|
|
|
{
|
|
|
|
lock (Positions)
|
|
|
|
{
|
2018-08-04 21:38:49 +00:00
|
|
|
Positions.Add((Memory, Position, Size));
|
2018-02-17 21:36:08 +00:00
|
|
|
|
2018-02-20 10:54:00 +00:00
|
|
|
MemoryMapped?.Invoke(this, EventArgs.Empty);
|
2018-02-17 21:36:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 21:38:49 +00:00
|
|
|
public void RemoveVirtualPosition(AMemory Memory, long Position, long Size)
|
2018-02-17 21:36:08 +00:00
|
|
|
{
|
|
|
|
lock (Positions)
|
|
|
|
{
|
2018-08-04 21:38:49 +00:00
|
|
|
Positions.Remove((Memory, Position, Size));
|
2018-02-17 21:36:08 +00:00
|
|
|
|
2018-02-20 10:54:00 +00:00
|
|
|
MemoryUnmapped?.Invoke(this, EventArgs.Empty);
|
2018-02-17 21:36:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 21:38:49 +00:00
|
|
|
public (AMemory, long, long)[] GetVirtualPositions()
|
2018-02-17 21:36:08 +00:00
|
|
|
{
|
2018-03-05 05:09:52 +00:00
|
|
|
return Positions.ToArray();
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|