diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-11-10 22:07:52 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-10 22:07:52 -0300 |
| commit | 3c60d4b0eaa54983cf8e347fb156742c925f0594 (patch) | |
| tree | b224bb0a167a45d68a07294eefd51c52e9aea4a9 /Ryujinx.Memory/Tracking/IVirtualMemoryManager.cs | |
| parent | 02872833b6da02a20e331305caf05f722e6c8e68 (diff) | |
Do not report unmapped pages as dirty (#1672)
* Do not report unmapped pages as dirty
* Make tests pass again
* PR feedback
Diffstat (limited to 'Ryujinx.Memory/Tracking/IVirtualMemoryManager.cs')
| -rw-r--r-- | Ryujinx.Memory/Tracking/IVirtualMemoryManager.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Memory/Tracking/IVirtualMemoryManager.cs b/Ryujinx.Memory/Tracking/IVirtualMemoryManager.cs index 6b5474e1..e6d8e8c9 100644 --- a/Ryujinx.Memory/Tracking/IVirtualMemoryManager.cs +++ b/Ryujinx.Memory/Tracking/IVirtualMemoryManager.cs @@ -4,6 +4,7 @@ { (ulong address, ulong size)[] GetPhysicalRegions(ulong va, ulong size); + bool IsRangeMapped(ulong va, ulong size); void TrackingReprotect(ulong va, ulong size, MemoryPermission protection); } } |
