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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2019-03-05 08:19:07 +0300
committerMarek Safar <marek.safar@gmail.com>2019-03-06 20:24:46 +0300
commit835c8590ca89b59b09abc58f6ccb6fa17a1d3243 (patch)
tree660e4d10f83d1e90bcb4851ea21c7b474d3ca9ba /mcs/class/referencesource
parentd02c43e23e1ae9ac293e1bf2f41592959b5f664c (diff)
[netcore] Implement DependentHandle using the existing ephemeron code.
Diffstat (limited to 'mcs/class/referencesource')
-rw-r--r--mcs/class/referencesource/mscorlib/system/gc.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/mcs/class/referencesource/mscorlib/system/gc.cs b/mcs/class/referencesource/mscorlib/system/gc.cs
index 9bcaaf12fdc..423db0a806b 100644
--- a/mcs/class/referencesource/mscorlib/system/gc.cs
+++ b/mcs/class/referencesource/mscorlib/system/gc.cs
@@ -80,11 +80,9 @@ namespace System {
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern static void RecordPressure (long bytesAllocated);
-#if !NETCORE
// TODO: Move following to ConditionalWeakTable
[MethodImplAttribute (MethodImplOptions.InternalCall)]
internal extern static void register_ephemeron_array (Ephemeron[] array);
-#endif
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern static object get_ephemeron_tombstone ();