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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-03-10 02:36:30 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-03-10 02:36:30 +0300
commitdeb0326ee6533275b7204c6ee255d7adcb28549f (patch)
treedd176c678023859e289b47e6cc15ee5f39c6a216
parent31eda261991f9f6c1add1686b6d3799f835b2978 (diff)
Make ThreadPoolBoundHandle public againcorert-threadpoolboundhandle
-rw-r--r--src/System.Private.CoreLib/src/System/Threading/Win32ThreadPoolBoundHandle.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/System.Private.CoreLib/src/System/Threading/Win32ThreadPoolBoundHandle.cs b/src/System.Private.CoreLib/src/System/Threading/Win32ThreadPoolBoundHandle.cs
index c614542a3..571cf52c3 100644
--- a/src/System.Private.CoreLib/src/System/Threading/Win32ThreadPoolBoundHandle.cs
+++ b/src/System.Private.CoreLib/src/System/Threading/Win32ThreadPoolBoundHandle.cs
@@ -13,12 +13,7 @@ namespace System.Threading
//
// Implementation of ThreadPoolBoundHandle that sits on top of the Win32 ThreadPool
//
-#if MONO
- internal sealed class ThreadPoolBoundHandle
-#else
- public sealed class ThreadPoolBoundHandle
-#endif
- : IDisposable, IDeferredDisposable
+ public sealed class ThreadPoolBoundHandle : IDisposable, IDeferredDisposable
{
private readonly SafeHandle _handle;
private readonly SafeThreadPoolIOHandle _threadPoolHandle;