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-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 [EMAIL PROTECTED] 2006-05-11 15:24 ------- Created an attachment (id=17000) patch + +------- Additional Comments From [EMAIL PROTECTED] 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 (); + } +} + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
