aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Memory/MemoryManagerUnixHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Memory/MemoryManagerUnixHelper.cs')
-rw-r--r--src/Ryujinx.Memory/MemoryManagerUnixHelper.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Ryujinx.Memory/MemoryManagerUnixHelper.cs b/src/Ryujinx.Memory/MemoryManagerUnixHelper.cs
index a7b207ab..6f36a6d5 100644
--- a/src/Ryujinx.Memory/MemoryManagerUnixHelper.cs
+++ b/src/Ryujinx.Memory/MemoryManagerUnixHelper.cs
@@ -14,7 +14,7 @@ namespace Ryujinx.Memory
PROT_NONE = 0,
PROT_READ = 1,
PROT_WRITE = 2,
- PROT_EXEC = 4
+ PROT_EXEC = 4,
}
[Flags]
@@ -26,7 +26,7 @@ namespace Ryujinx.Memory
MAP_NORESERVE = 8,
MAP_FIXED = 16,
MAP_UNLOCKED = 32,
- MAP_JIT_DARWIN = 0x800
+ MAP_JIT_DARWIN = 0x800,
}
[Flags]
@@ -164,9 +164,9 @@ namespace Ryujinx.Memory
return result;
}
- public static IntPtr mmap(IntPtr address, ulong length, MmapProts prot, MmapFlags flags, int fd, long offset)
+ public static IntPtr Mmap(IntPtr address, ulong length, MmapProts prot, MmapFlags flags, int fd, long offset)
{
return Internal_mmap(address, length, prot, MmapFlagsToSystemFlags(flags), fd, offset);
}
}
-} \ No newline at end of file
+}