aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Memory/AddressSpaceManager.cs
diff options
context:
space:
mode:
authorriperiperi <rhy3756547@hotmail.com>2020-12-08 00:42:17 +0000
committerGitHub <noreply@github.com>2020-12-07 21:42:17 -0300
commit4594c3b31014655fb0b37f1305598fc3cbafdc73 (patch)
tree5eb920173a8da883e1d3fa2288fd375d3fb1fa0c /Ryujinx.Memory/AddressSpaceManager.cs
parent36f6bbf5b9082193abb33b26e654ce973ed0ee83 (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/AddressSpaceManager.cs')
-rw-r--r--Ryujinx.Memory/AddressSpaceManager.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx.Memory/AddressSpaceManager.cs b/Ryujinx.Memory/AddressSpaceManager.cs
index c6d6cab5..50c7adad 100644
--- a/Ryujinx.Memory/AddressSpaceManager.cs
+++ b/Ryujinx.Memory/AddressSpaceManager.cs
@@ -545,5 +545,10 @@ namespace Ryujinx.Memory
_pageTable[l0] = null;
}
}
+
+ public void SignalMemoryTracking(ulong va, ulong size, bool write)
+ {
+ // Only the ARM Memory Manager has tracking for now.
+ }
}
}