diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-11-07 13:24:10 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 13:24:10 -0300 |
commit | 815819767c5794624e3e7bc2bebcabe8ea4de0f6 (patch) | |
tree | a57b27ee8d43f243e7085dfbba16a388d13f9432 /src/Ryujinx.Memory/AddressSpaceManager.cs | |
parent | 623604c39186901fd64c8e04e9aa959d5c825529 (diff) |
Force all exclusive memory accesses to be ordered on AppleHv (#5898)1.1.1072
* Implement reprotect method on virtual memory manager (currently stubbed)
* Force all exclusive memory accesses to be ordered on AppleHv
* Format whitespace
* Fix test build
* Fix comment copy/paste
* Fix wrong bit for isLoad
* Update src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs
Co-authored-by: riperiperi <rhy3756547@hotmail.com>
---------
Co-authored-by: riperiperi <rhy3756547@hotmail.com>
Diffstat (limited to 'src/Ryujinx.Memory/AddressSpaceManager.cs')
-rw-r--r-- | src/Ryujinx.Memory/AddressSpaceManager.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Ryujinx.Memory/AddressSpaceManager.cs b/src/Ryujinx.Memory/AddressSpaceManager.cs index 65b4d48f..b8d48365 100644 --- a/src/Ryujinx.Memory/AddressSpaceManager.cs +++ b/src/Ryujinx.Memory/AddressSpaceManager.cs @@ -456,6 +456,11 @@ namespace Ryujinx.Memory } /// <inheritdoc/> + public void Reprotect(ulong va, ulong size, MemoryPermission protection) + { + } + + /// <inheritdoc/> public void TrackingReprotect(ulong va, ulong size, MemoryPermission protection) { throw new NotImplementedException(); |