[Mono-bugs] [Bug 78241][Maj] Changed - CreateThread failure/out of wapi handles slots

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu May 11 19:46:12 EDT 2006


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 robertj at gmx.net.

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

--- shadow/78241	2006-05-11 15:24:04.000000000 -0400
+++ shadow/78241.tmp.3632	2006-05-11 19:46:12.000000000 -0400
@@ -523,6 +523,26 @@
 Try this patch, against SVN head
 
 ------- Additional Comments From dick at ximian.com  2006-05-11 15:24 -------
 Created an attachment (id=17000)
 patch
 
+
+------- Additional Comments From robertj at gmx.net  2006-05-11 19:46 -------
+Dick, the thread handle issue is fixed. Process handles still leak:
+
+using System;
+using System.Diagnostics;
+
+class T
+{
+        static void Main ()
+        {
+                for (int i = 0; i < 8192; i++) {
+                        Process p = Process.Start ("/bin/true");
+                        p.WaitForExit ();
+                        p.Close ();
+                }
+                Console.ReadLine ();
+        }
+}
+


More information about the mono-bugs mailing list