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 CompressedS


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Threading CompressedStack.cs,1.1,1.2 Thread.cs,1.10,1.11
Date: Wed, 23 Apr 2003 01:39:53 -0400

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

Modified Files:
        CompressedStack.cs Thread.cs 
Log Message:


Minor tweaks to a lot of classes to make them more signature compatible
with .NET Framework SDK 1.1.


Index: CompressedStack.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Threading/CompressedStack.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** CompressedStack.cs  2 Apr 2003 02:23:21 -0000       1.1
--- CompressedStack.cs  23 Apr 2003 05:39:50 -0000      1.2
***************
*** 40,44 ****
  
        // Get the unmanaged compressed stack handle.
!       public IntPtr UnmanagedCompressedStack { get { return IntPtr.Zero; } }
  
  }; // class CompressedStack
--- 40,44 ----
  
        // Get the unmanaged compressed stack handle.
!       internal IntPtr UnmanagedCompressedStack { get { return IntPtr.Zero; } }
  
  }; // class CompressedStack

Index: Thread.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Threading/Thread.cs,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** Thread.cs   15 Apr 2003 05:13:43 -0000      1.10
--- Thread.cs   23 Apr 2003 05:39:50 -0000      1.11
***************
*** 2,6 ****
   * Thread.cs - Implementation of the "System.Threading.Thread" class.
   *
!  * Copyright (C) 2001  Southern Storm Software, Pty Ltd.
   *
   * This program is free software; you can redistribute it and/or modify
--- 2,6 ----
   * Thread.cs - Implementation of the "System.Threading.Thread" class.
   *
!  * Copyright (C) 2001, 2003  Southern Storm Software, Pty Ltd.
   *
   * This program is free software; you can redistribute it and/or modify
***************
*** 151,154 ****
--- 151,155 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static sbyte VolatileRead(ref sbyte address);
  
***************
*** 157,160 ****
--- 158,162 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static ushort VolatileRead(ref ushort address);
  
***************
*** 163,166 ****
--- 165,169 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static uint VolatileRead(ref uint address);
  
***************
*** 169,172 ****
--- 172,176 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static ulong VolatileRead(ref ulong address);
  
***************
*** 175,178 ****
--- 179,183 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static UIntPtr VolatileRead(ref UIntPtr address);
  
***************
*** 191,194 ****
--- 196,200 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static void VolatileWrite(ref sbyte address, sbyte value);
  
***************
*** 197,200 ****
--- 203,207 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static void VolatileWrite(ref ushort address, ushort 
value);
  
***************
*** 203,206 ****
--- 210,214 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static void VolatileWrite(ref uint address, uint value);
  
***************
*** 209,212 ****
--- 217,221 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static void VolatileWrite(ref ulong address, ulong value);
  
***************
*** 215,218 ****
--- 224,228 ----
  
        [MethodImpl(MethodImplOptions.InternalCall)]
+       [CLSCompliant(false)]
        extern public static void VolatileWrite(ref UIntPtr address, UIntPtr 
value);
  





reply via email to

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