diff options
| author | riperiperi <rhy3756547@hotmail.com> | 2020-12-08 00:42:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-07 21:42:17 -0300 |
| commit | 4594c3b31014655fb0b37f1305598fc3cbafdc73 (patch) | |
| tree | 5eb920173a8da883e1d3fa2288fd375d3fb1fa0c /Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs | |
| parent | 36f6bbf5b9082193abb33b26e654ce973ed0ee83 (diff) | |
Signal memory tracking before/after mapping into another process (#1785)
* Signal memory tracking before/after mapping into another process
* Wording.
* Add missing method.
Diffstat (limited to 'Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs')
| -rw-r--r-- | Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs b/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs index c673bc80..62b3ee4a 100644 --- a/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs +++ b/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs @@ -75,6 +75,11 @@ namespace Ryujinx.Memory.Tests throw new NotImplementedException(); } + public void SignalMemoryTracking(ulong va, ulong size, bool write) + { + throw new NotImplementedException(); + } + public void TrackingReprotect(ulong va, ulong size, MemoryPermission protection) { } |
