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=78241

--- shadow/78241        2006-04-29 13:40:52.000000000 -0400
+++ shadow/78241.tmp.31615      2006-04-29 15:22:24.000000000 -0400
@@ -81,6 +81,33 @@
 The bug has been already reported:
 
 http://lists.ximian.com/pipermail/mono-devel-list/2006-April/018342.html
 
 where a Timer is involved as well, like in my ASP.NET application.
 
+
+------- Additional Comments From [EMAIL PROTECTED]  2006-04-29 15:22 -------
+It's of course unrelated to Timer. Here a better test case:
+
+using System;
+using System.Threading;
+
+class T
+{
+        static void Main ()
+        {
+                WaitCallback cb = new WaitCallback (Worker);
+                while (true) {
+                        ThreadPool.QueueUserWorkItem (cb);
+                        Thread.Sleep (1);
+                }
+
+        }
+
+        static void Worker (object state)
+        {
+        }
+}
+
+
+It can be reproduced with SVN head too.
+
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to