From 52aa31c42bae1c11278c556df6957fa64f678ea6 Mon Sep 17 00:00:00 2001 From: Paolo Molaro Date: Tue, 13 May 2003 13:48:08 +0000 Subject: [PATCH] Tue May 13 15:34:29 CEST 2003 Paolo Molaro * 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 | 6 ++++++ mcs/class/corlib/System.Threading/Thread.cs | 2 ++ 2 files changed, 8 insertions(+) diff --git a/mcs/class/corlib/System.Threading/ChangeLog b/mcs/class/corlib/System.Threading/ChangeLog index a66b067d7cc..29fd2dd620f 100644 --- a/mcs/class/corlib/System.Threading/ChangeLog +++ b/mcs/class/corlib/System.Threading/ChangeLog @@ -1,3 +1,9 @@ + +Tue May 13 15:34:29 CEST 2003 Paolo Molaro + + * 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á * Timer.cs: Change the position of two lines because they were diff --git a/mcs/class/corlib/System.Threading/Thread.cs b/mcs/class/corlib/System.Threading/Thread.cs index e223e1d4682..b58323c6f38 100755 --- a/mcs/class/corlib/System.Threading/Thread.cs +++ b/mcs/class/corlib/System.Threading/Thread.cs @@ -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 { -- 2.25.1