[Mono-bugs] [Bug 81583][Wis] Changed - Finalizers continue to run during shutdown

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu May 10 12:41:20 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 joncham at gmail.com.

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

--- shadow/81583	2007-05-10 12:41:08.000000000 -0400
+++ shadow/81583.tmp.28359	2007-05-10 12:41:20.000000000 -0400
@@ -1,14 +1,14 @@
 Bug#: 81583
 Product: Mono: Runtime
 Version: 1.0
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Wishlist
 Component: GC
 AssignedTo: lupus at ximian.com                            
 ReportedBy: joncham at gmail.com               
 QAContact: mono-bugs at ximian.com
 TargetMilestone: ---
@@ -35,6 +35,30 @@
 Clean shutdown
 
 How often does this happen? 
 Everytime.
 
 Additional Information:
+
+------- Additional Comments From joncham at gmail.com  2007-05-10 12:41 -------
+Test case:
+
+using System;
+using System.Threading;
+
+namespace process_impl
+{
+
+	class Program
+	{
+		~Program () {
+			Thread.Sleep (2000);
+		}
+		[STAThread]
+		static void Main (string[] args) {
+			for (int i = 0; i < 10; i++) {
+				Program p = new Program ();
+				Console.WriteLine (p);
+			}
+		}
+	}
+}


More information about the mono-bugs mailing list