mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-07 16:33:05 +00:00
Rebase aftermath.
This commit is contained in:
parent
1ff1713ad6
commit
aa44e70b32
2 changed files with 4 additions and 4 deletions
|
@ -58,7 +58,7 @@ namespace Ryujinx.Cpu.AppleHv
|
|||
|
||||
public MemoryTracking Tracking { get; }
|
||||
|
||||
public event Action<ulong, ulong> UnmapEvent;
|
||||
public event Action<ulong, ulong, bool> UnmapEvent;
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new instance of the Hypervisor memory manager.
|
||||
|
@ -172,11 +172,11 @@ namespace Ryujinx.Cpu.AppleHv
|
|||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
public void Unmap(ulong va, ulong size)
|
||||
public void Unmap(ulong va, ulong size, bool clearRejitQueueOnly = false)
|
||||
{
|
||||
AssertValidAddressAndSize(va, size);
|
||||
|
||||
UnmapEvent?.Invoke(va, size);
|
||||
UnmapEvent?.Invoke(va, size, clearRejitQueueOnly);
|
||||
Tracking.Unmap(va, size);
|
||||
|
||||
RemoveMapping(va, size);
|
||||
|
|
|
@ -27,7 +27,7 @@ namespace Ryujinx.Tests.Memory
|
|||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void Unmap(ulong va, ulong size)
|
||||
public void Unmap(ulong va, ulong size, bool clearRejitQueueOnly = false)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue