Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by [EMAIL PROTECTED]

http://bugzilla.ximian.com/show_bug.cgi?id=81646

--- shadow/81646        2007-08-30 17:28:25.000000000 -0400
+++ shadow/81646.tmp.1258       2007-08-31 12:32:07.000000000 -0400
@@ -1,13 +1,13 @@
 Bug#: 81646
 Product: Mono: Class Libraries
 Version: 1.0
 OS: other
 OS Details: 
-Status: RESOLVED   
-Resolution: FIXED
+Status: REOPENED   
+Resolution: 
 Severity: Unknown
 Priority: Normal
 Component: System
 AssignedTo: [EMAIL PROTECTED]                            
 ReportedBy: [EMAIL PROTECTED]               
 QAContact: [EMAIL PROTECTED]
@@ -59,6 +59,29 @@
 According to the release documentation Thread.Interrupt was
 implemented in 1.2.1. However I have installed the latest version, and
 retested the samples I have uploaded with the same result.
 
 ------- Additional Comments From [EMAIL PROTECTED]  2007-08-30 17:28 -------
 Fixed in svn r85075
+
+------- Additional Comments From [EMAIL PROTECTED]  2007-08-31 12:32 -------
+Dick, I think this change broke threading on Mono.
+
+To reproduce, compile and run the following code:
+
+using System;
+using System.Threading;
+
+class Program
+{
+  static void Main ()
+  {
+    Thread thread = new Thread (new ThreadStart (Monitor));
+    thread.IsBackground = true;
+    thread.Start ();
+  }
+
+  static void Monitor ()
+  {
+  }
+}
+
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to