dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Threading AutoResetEv


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Threading AutoResetEvent.cs,1.1,1.2 ManualResetEvent.cs,1.1,1.2
Date: Tue, 01 Apr 2003 17:15:30 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Threading
In directory subversions:/tmp/cvs-serv16125/runtime/System/Threading

Modified Files:
        AutoResetEvent.cs ManualResetEvent.cs 
Log Message:


Mark the "AutoResetEvent" and "ManualResetEvent" classes as sealed and non-ECMA.


Index: AutoResetEvent.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Threading/AutoResetEvent.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** AutoResetEvent.cs   7 Dec 2002 10:47:26 -0000       1.1
--- AutoResetEvent.cs   1 Apr 2003 22:15:28 -0000       1.2
***************
*** 25,32 ****
        using System.Runtime.CompilerServices;
  
        /// <summary>
        /// See ECMA specs.
        /// </summary>
!       public class AutoResetEvent
                : WaitHandle
        {
--- 25,34 ----
        using System.Runtime.CompilerServices;
  
+ #if !ECMA_COMPAT
+ 
        /// <summary>
        /// See ECMA specs.
        /// </summary>
!       public sealed class AutoResetEvent
                : WaitHandle
        {
***************
*** 59,61 ****
--- 61,66 ----
                }
        }
+ 
+ #endif // !ECMA_COMPAT
+ 
  }

Index: ManualResetEvent.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Threading/ManualResetEvent.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ManualResetEvent.cs 7 Dec 2002 10:47:26 -0000       1.1
--- ManualResetEvent.cs 1 Apr 2003 22:15:28 -0000       1.2
***************
*** 27,32 ****
        /// See ECMA specs.
        /// </summary>
!       public class ManualResetEvent
!               : WaitHandle
        {
                /// <summary>
--- 27,36 ----
        /// See ECMA specs.
        /// </summary>
! #if ECMA_COMPAT
!       internal
! #else
!       public
! #endif
!       sealed class ManualResetEvent : WaitHandle
        {
                /// <summary>
***************
*** 58,60 ****
--- 62,65 ----
                }
        }
+ 
  }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]