[Mono-bugs] [Bug 81646][Nor] Changed - Lock/Monitor.Enter cannot be interrupted
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Fri Aug 31 12:32:07 EDT 2007
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 gert.driesen at pandora.be.
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: dick at ximian.com
ReportedBy: macite at gmail.com
QAContact: mono-bugs at ximian.com
@@ -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 dick at ximian.com 2007-08-30 17:28 -------
Fixed in svn r85075
+
+------- Additional Comments From gert.driesen at pandora.be 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 ()
+ {
+ }
+}
+
More information about the mono-bugs
mailing list