From 2f0f77f87ca73f0449d094f676cd1a2467d649b3 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Tue, 29 Oct 2019 13:52:38 -0700 Subject: [PATCH] Move runtime specific methods out of the runtime partition Signed-off-by: dotnet-bot Commit migrated from https://github.com/dotnet/coreclr/commit/f1ff212f4c2775d48b1a30cc0842ec9b42178ea8 --- .../src/System/Diagnostics/Tracing/ActivityTracker.cs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/ActivityTracker.cs b/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/ActivityTracker.cs index e55e81c..8ee2cc1 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/ActivityTracker.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/ActivityTracker.cs @@ -588,25 +588,6 @@ namespace System.Diagnostics.Tracing // currently we do nothing, as that seems better than setting to Guid.Emtpy. } - // Assembly load runtime activity name - private const string AssemblyLoadName = "AssemblyLoad"; - - /// - /// Called by the runtime to start an assembly load activity - /// - private static void StartAssemblyLoad(ref Guid activityId, ref Guid relatedActivityId) - { - Instance.OnStart(NativeRuntimeEventSource.Log.Name, AssemblyLoadName, 0, ref activityId, ref relatedActivityId, EventActivityOptions.Recursive); - } - - /// - /// Called by the runtime to stop an assembly load activity - /// - private static void StopAssemblyLoad(ref Guid activityId) - { - Instance.OnStop(NativeRuntimeEventSource.Log.Name, AssemblyLoadName, 0, ref activityId); - } - /// /// Async local variables have the property that the are automatically copied whenever a task is created and used /// while that task is running. Thus m_current 'flows' to any task that is caused by the current thread that -- 2.7.4