mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
3c60d4b0ea
* Do not report unmapped pages as dirty * Make tests pass again * PR feedback
11 lines
310 B
C#
11 lines
310 B
C#
namespace Ryujinx.Memory.Tracking
|
|
{
|
|
public interface IVirtualMemoryManager
|
|
{
|
|
(ulong address, ulong size)[] GetPhysicalRegions(ulong va, ulong size);
|
|
|
|
bool IsRangeMapped(ulong va, ulong size);
|
|
void TrackingReprotect(ulong va, ulong size, MemoryPermission protection);
|
|
}
|
|
}
|