diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2024-04-06 13:51:44 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-06 13:51:44 -0300 |
| commit | 12b235700cf104163bf8030df0feb6357a40f9d3 (patch) | |
| tree | 9a3882a69debf74c450b86056a40b427f401580b /src/Ryujinx.Memory/IVirtualMemoryManager.cs | |
| parent | 3be616207df437695208ceaec9b255db18768610 (diff) | |
Delete old 16KB page workarounds (#6584)
* Delete old 16KB page workarounds
* Rename Supports4KBPage to UsesPrivateAllocations
* Format whitespace
* This one should be false too
* Update XML doc
Diffstat (limited to 'src/Ryujinx.Memory/IVirtualMemoryManager.cs')
| -rw-r--r-- | src/Ryujinx.Memory/IVirtualMemoryManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.Memory/IVirtualMemoryManager.cs b/src/Ryujinx.Memory/IVirtualMemoryManager.cs index 96d3e857..102cedc9 100644 --- a/src/Ryujinx.Memory/IVirtualMemoryManager.cs +++ b/src/Ryujinx.Memory/IVirtualMemoryManager.cs @@ -8,10 +8,10 @@ namespace Ryujinx.Memory public interface IVirtualMemoryManager { /// <summary> - /// Indicates whenever the memory manager supports aliasing pages at 4KB granularity. + /// Indicates whether the memory manager creates private allocations when the <see cref="MemoryMapFlags.Private"/> flag is set on map. /// </summary> - /// <returns>True if 4KB pages are supported by the memory manager, false otherwise</returns> - bool Supports4KBPages { get; } + /// <returns>True if private mappings might be used, false otherwise</returns> + bool UsesPrivateAllocations { get; } /// <summary> /// Maps a virtual memory range into a physical memory range. |
