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:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2017-04-15 01:16:15 +0300
committerGitHub <noreply@github.com>2017-04-15 01:16:15 +0300
commitf4abc534597f2c4345dac5e6e8bb688d031c2725 (patch)
tree65e248715cdb5e38874fb730edd0c552b9b78719 /src/Runtime.Base
parent46498b14176e85c25f7cb7926c377246fcb47fb2 (diff)
parentb543230eec82a909400cb5ea4dcebc1aec61766d (diff)
Merge pull request #3336 from dotnet/nmirror
Merge nmirror to master
Diffstat (limited to 'src/Runtime.Base')
-rw-r--r--src/Runtime.Base/src/System/Runtime/InternalCalls.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Runtime.Base/src/System/Runtime/InternalCalls.cs b/src/Runtime.Base/src/System/Runtime/InternalCalls.cs
index 26bc3336e..943c3c14f 100644
--- a/src/Runtime.Base/src/System/Runtime/InternalCalls.cs
+++ b/src/Runtime.Base/src/System/Runtime/InternalCalls.cs
@@ -164,6 +164,11 @@ namespace System.Runtime
[ManuallyManaged(GcPollPolicy.Never)]
internal extern static unsafe void RhpCopyObjectContents(object objDest, object objSrc);
+ [RuntimeImport(Redhawk.BaseName, "RhpCompareObjectContents")]
+ [MethodImpl(MethodImplOptions.InternalCall)]
+ [ManuallyManaged(GcPollPolicy.Never)]
+ internal extern static bool RhpCompareObjectContentsAndPadding(object obj1, object obj2);
+
[RuntimeImport(Redhawk.BaseName, "RhpAssignRef")]
[MethodImpl(MethodImplOptions.InternalCall)]
[ManuallyManaged(GcPollPolicy.Never)]