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:
authorEgorBo <egorbo@gmail.com>2018-04-30 18:13:02 +0300
committerMarek Safar <marek.safar@gmail.com>2018-04-30 18:29:55 +0300
commit052a9f324230345daf48843b9f0bb796f02e9379 (patch)
tree4b7dc54104c1ee2cf7512c86b301a185148308dd
parentb5c0b65ea311f5a55fcd44115b635755e9f04b47 (diff)
Add `using System.Diagnostics.Private;` for mono
-rw-r--r--src/System.Private.CoreLib/src/System/Threading/CancellationToken.cs1
-rw-r--r--src/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs1
-rw-r--r--src/System.Private.CoreLib/src/System/Threading/ThreadLocal.cs1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/src/System/Threading/CancellationToken.cs b/src/System.Private.CoreLib/src/System/Threading/CancellationToken.cs
index e3495aeb4..fdca71f46 100644
--- a/src/System.Private.CoreLib/src/System/Threading/CancellationToken.cs
+++ b/src/System.Private.CoreLib/src/System/Threading/CancellationToken.cs
@@ -10,6 +10,7 @@
using System.Diagnostics;
+using System.Diagnostics.Private;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
diff --git a/src/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs b/src/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs
index 30302b936..8e66d5b8b 100644
--- a/src/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs
+++ b/src/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs
@@ -9,6 +9,7 @@
using System.Collections.Generic;
using System.Diagnostics;
+using System.Diagnostics.Private;
using System.Runtime.InteropServices;
namespace System.Threading
diff --git a/src/System.Private.CoreLib/src/System/Threading/ThreadLocal.cs b/src/System.Private.CoreLib/src/System/Threading/ThreadLocal.cs
index ad6da89a9..0a8c845ac 100644
--- a/src/System.Private.CoreLib/src/System/Threading/ThreadLocal.cs
+++ b/src/System.Private.CoreLib/src/System/Threading/ThreadLocal.cs
@@ -17,6 +17,7 @@
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
using System.Diagnostics;
+using System.Diagnostics.Private;
using System.Collections.Generic;
namespace System.Threading