Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2017-04-13 17:49:12 +0300
committerMarek Safar <marek.safar@gmail.com>2017-04-18 11:28:49 +0300
commited6296dfbb88d66f08601c013caee30c88c41afa (patch)
tree81905168d3d4c2940e34f7b27945fcc8176b1441
parent8dce492077a2cd43abff2e9d4e0c9e186f44af2e (diff)
Rename multiplex conditionals2017-04
-rw-r--r--src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs b/src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs
index 7ab86bfe6..bc537f749 100644
--- a/src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs
+++ b/src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs
@@ -20,7 +20,7 @@ internal static partial class Interop
internal static extern int HeapFree(IntPtr hHeap, UInt32 dwFlags, IntPtr lpMem);
}
-#if MONO
+#if MULTIPLEX_OS
private static IntPtr Windows_MemAlloc(UIntPtr sizeInBytes)
#else
internal static IntPtr MemAlloc(UIntPtr sizeInBytes)
@@ -34,7 +34,7 @@ internal static partial class Interop
return allocatedMemory;
}
-#if MONO
+#if MULTIPLEX_OS
private static void Windows_MemFree(IntPtr allocatedMemory)
#else
internal static void MemFree(IntPtr allocatedMemory)