Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Molaro <lupus@oddwiz.org>2007-01-23 19:44:13 +0300
committerPaolo Molaro <lupus@oddwiz.org>2007-01-23 19:44:13 +0300
commit25af0d0ca20211087017a77fa97fbdfd0a8fcb3b (patch)
treefa6db65ff8af6a81e14d3c78d8e9e8bf5f1bc376
parent7d0700077b6222b14c3cc63efc4a7a562114661f (diff)
Tue Jan 23 17:43:50 CET 2007 Paolo Molaro <lupus@ximian.com>
* Thread.cs: mark the GC-tracked field with UIntPtr. svn path=/trunk/mcs/; revision=71518
-rw-r--r--mcs/class/corlib/System.Threading/ChangeLog5
-rw-r--r--mcs/class/corlib/System.Threading/Thread.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/corlib/System.Threading/ChangeLog b/mcs/class/corlib/System.Threading/ChangeLog
index 3a121488a8c..b1ad8c56708 100644
--- a/mcs/class/corlib/System.Threading/ChangeLog
+++ b/mcs/class/corlib/System.Threading/ChangeLog
@@ -1,3 +1,8 @@
+
+Tue Jan 23 17:43:50 CET 2007 Paolo Molaro <lupus@ximian.com>
+
+ * Thread.cs: mark the GC-tracked field with UIntPtr.
+
2006-12-31 Miguel de Icaza <miguel@novell.com>
* ThreadPool.cs: Stub a method.
diff --git a/mcs/class/corlib/System.Threading/Thread.cs b/mcs/class/corlib/System.Threading/Thread.cs
index cac637438fd..bbf713df83d 100644
--- a/mcs/class/corlib/System.Threading/Thread.cs
+++ b/mcs/class/corlib/System.Threading/Thread.cs
@@ -77,7 +77,7 @@ namespace System.Threading {
*/
private IntPtr start_notify;
private IntPtr stack_ptr;
- private IntPtr static_data;
+ private UIntPtr static_data; /* GC-tracked */
private IntPtr jit_data;
private IntPtr lock_data;
Context current_appcontext;