Merge pull request #1345 from mattleibow/websocket-continuation-frame-fix
[mono.git] / mcs / class / corlib / System.Threading / WaitHandle.cs
1 //
2 // System.Threading.WaitHandle.cs
3 //
4 // Author:
5 //      Dick Porter (dick@ximian.com)
6 //      Gonzalo Paniagua Javier (gonzalo@ximian.com
7 //
8 // (C) 2002,2003 Ximian, Inc.   (http://www.ximian.com)
9 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Reflection;
33 using System.Runtime.CompilerServices;
34 using System.Runtime.Remoting.Contexts;
35 using System.Security.Permissions;
36 using System.Runtime.InteropServices;
37 using Microsoft.Win32.SafeHandles;
38 using System.Runtime.ConstrainedExecution;
39
40 namespace System.Threading
41 {
42         [StructLayout (LayoutKind.Sequential)]
43         public abstract partial class WaitHandle
44                 : MarshalByRefObject, IDisposable
45         {
46                 protected static readonly IntPtr InvalidHandle = (IntPtr) (-1);
47
48                 static int WaitMultiple(WaitHandle[] waitHandles, int millisecondsTimeout, bool exitContext, bool WaitAll)
49                 {
50                         int release_last = -1;
51
52                         try {
53 #if !DISABLE_REMOTING
54                                 if (exitContext)
55                                         SynchronizationAttribute.ExitContext ();
56 #endif
57
58                                 for (int i = 0; i < waitHandles.Length; ++i) {
59                                         try {
60                                         } finally {
61                                                 /* we have to put it in a finally block, to avoid having a ThreadAbortException
62                                                  * between the return from DangerousAddRef and the assignement to release_last */
63                                                 bool release = false;
64                                                 waitHandles [i].SafeWaitHandle.DangerousAddRef (ref release);
65                                                 release_last = i;
66                                         }
67                                 }
68
69                                 if (WaitAll)
70                                         return WaitAll_internal (waitHandles, millisecondsTimeout);
71                                 else
72                                         return WaitAny_internal (waitHandles, millisecondsTimeout);
73                         } finally {
74                                 for (int i = release_last; i >= 0; --i) {
75                                         waitHandles [i].SafeWaitHandle.DangerousRelease ();
76                                 }
77
78 #if !DISABLE_REMOTING
79                                 if (exitContext)
80                                         SynchronizationAttribute.EnterContext ();
81 #endif
82                         }
83                 }
84
85                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
86                 private static extern int WaitAll_internal(WaitHandle[] handles, int ms);
87
88                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
89                 private static extern int WaitAny_internal(WaitHandle[] handles, int ms);
90
91                 static int WaitOneNative (SafeHandle waitableSafeHandle, uint millisecondsTimeout, bool hasThreadAffinity, bool exitContext)
92                 {
93                         bool release = false;
94                         try {
95 #if !DISABLE_REMOTING
96                                 if (exitContext)
97                                         SynchronizationAttribute.ExitContext ();
98 #endif
99
100                                 waitableSafeHandle.DangerousAddRef (ref release);
101
102                                 return WaitOne_internal (waitableSafeHandle.DangerousGetHandle (), (int) millisecondsTimeout);
103                         } finally {
104                                 if (release)
105                                         waitableSafeHandle.DangerousRelease ();
106
107 #if !DISABLE_REMOTING
108                                 if (exitContext)
109                                         SynchronizationAttribute.EnterContext ();
110 #endif
111                         }
112                 }
113
114                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
115                 static extern int WaitOne_internal(IntPtr handle, int ms);
116
117                 static int SignalAndWaitOne (SafeWaitHandle waitHandleToSignal,SafeWaitHandle waitHandleToWaitOn, int millisecondsTimeout, bool hasThreadAffinity,  bool exitContext)
118                 {
119                         bool releaseHandleToSignal = false, releaseHandleToWaitOn = false;
120                         try {
121                                 waitHandleToSignal.DangerousAddRef (ref releaseHandleToSignal);
122                                 waitHandleToWaitOn.DangerousAddRef (ref releaseHandleToWaitOn);
123
124                                 return SignalAndWait_Internal (waitHandleToSignal.DangerousGetHandle (), waitHandleToWaitOn.DangerousGetHandle (), millisecondsTimeout);
125                         } finally {
126                                 if (releaseHandleToSignal)
127                                         waitHandleToSignal.DangerousRelease ();
128                                 if (releaseHandleToWaitOn)
129                                         waitHandleToWaitOn.DangerousRelease ();
130                         }
131                 }
132
133                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
134                 static extern int SignalAndWait_Internal (IntPtr toSignal, IntPtr toWaitOn, int ms);
135         }
136 }