Tue May 13 15:34:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
authorPaolo Molaro <lupus@oddwiz.org>
Tue, 13 May 2003 13:48:08 +0000 (13:48 -0000)
committerPaolo Molaro <lupus@oddwiz.org>
Tue, 13 May 2003 13:48:08 +0000 (13:48 -0000)
* Thread.cs: added missing field used by the runtime and
a new field to support thread-static data.

svn path=/trunk/mcs/; revision=14533

mcs/class/corlib/System.Threading/ChangeLog
mcs/class/corlib/System.Threading/Thread.cs

index a66b067d7ccb306c8d1fe2b38fc448d395bb5c99..29fd2dd620fffe9e3aea7a95eb925aafff6bd78d 100644 (file)
@@ -1,3 +1,9 @@
+
+Tue May 13 15:34:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
+
+       * Thread.cs: added missing field used by the runtime and
+       a new field to support thread-static data.
+
 2003-04-17  Pedro Martínez Juliá  <yoros@wanadoo.es>
 
        * Timer.cs: Change the position of two lines because they were
index e223e1d4682f2b74dcc5192ebf4439aeb0052d90..b58323c6f3891f1200c5dd4c1e4ba85e63e351c9 100755 (executable)
@@ -32,6 +32,8 @@ namespace System.Threading
                 * is ok to return
                 */
                private IntPtr start_notify;
+               private IntPtr stack_ptr;
+               private IntPtr static_data;
                
                public static Context CurrentContext {
                        get {