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:
authordotnet-bot <dotnet-bot@microsoft.com>2017-10-21 00:49:47 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2017-10-21 00:49:47 +0300
commitb674c8cfe1802c553cb5463393ac9f02f58b5e67 (patch)
tree5cbee5d8f43eef2ace8f7baee26b025ce3bf9efa /src/Runtime.Base
parentdd9a41db606ee41ee6ccdd921eac927173cec6f4 (diff)
[tfs-changeset: 1678781]
Diffstat (limited to 'src/Runtime.Base')
-rw-r--r--src/Runtime.Base/src/System/Runtime/ThunkPool.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/Runtime.Base/src/System/Runtime/ThunkPool.cs b/src/Runtime.Base/src/System/Runtime/ThunkPool.cs
index 2fe2d09cc..73f25d157 100644
--- a/src/Runtime.Base/src/System/Runtime/ThunkPool.cs
+++ b/src/Runtime.Base/src/System/Runtime/ThunkPool.cs
@@ -57,18 +57,10 @@ namespace System.Runtime
public const nuint PageSizeMask = 0xFFF;
public const nuint AllocationGranularityMask = 0xFFFF;
-#if ARM64
- // ARM64TODO
- public static readonly int ThunkDataSize = 0;
- public static readonly int ThunkCodeSize = 0;
- public static readonly int NumThunksPerBlock = 0;
- public static readonly int NumThunkBlocksPerMapping = 0;
-#else
public static readonly int ThunkDataSize = 2 * IntPtr.Size;
public static readonly int ThunkCodeSize = InternalCalls.RhpGetThunkSize();
public static readonly int NumThunksPerBlock = InternalCalls.RhpGetNumThunksPerBlock();
public static readonly int NumThunkBlocksPerMapping = InternalCalls.RhpGetNumThunkBlocksPerMapping();
-#endif
}
internal class ThunksHeap
@@ -435,4 +427,4 @@ namespace System.Runtime
// {
// }
}
-} \ No newline at end of file
+}