From 58e4c0f918899586fca9c309d51ce5c4daa1c982 Mon Sep 17 00:00:00 2001 From: Anipik Date: Sat, 23 Jun 2018 21:29:23 -0700 Subject: [PATCH] non shared changes and disabling tests Signed-off-by: dotnet-bot Commit migrated from https://github.com/dotnet/coreclr/commit/e32feb0120e74178ef03c5c65b06022666470177 --- .../src/System/Threading/EventWaitHandle.Windows.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Threading/EventWaitHandle.Windows.cs b/src/libraries/System.Private.CoreLib/src/System/Threading/EventWaitHandle.Windows.cs index f186551..2da53b2 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Threading/EventWaitHandle.Windows.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Threading/EventWaitHandle.Windows.cs @@ -82,9 +82,7 @@ namespace System.Threading return res; } - public bool Set() => Set(_waitHandle); - - internal bool Set(SafeWaitHandle handle) + public bool Set() { bool res = Interop.Kernel32.SetEvent(_waitHandle); if (!res) -- 2.7.4