Factorize tatas pattern in TryRelaxedSet method in AtomicBoolean, add AtomicBoolean...
[mono.git] / mcs / class / corlib / System.Threading / IOCompletionCallback.cs
old mode 100755 (executable)
new mode 100644 (file)
index 9693bee..5d73f5b
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
 
 namespace System.Threading
 {
        // 'unsafe' wasn't in the spec, but the compiler insists because of
        // the pointer.
-       [Serializable]
+       [ComVisible (true)]
        [CLSCompliant(false)]
        public unsafe delegate void IOCompletionCallback(uint errorCode, uint numBytes, NativeOverlapped *pOVERLAP);
 }