https://bugzilla.novell.com/show_bug.cgi?id=661638
https://bugzilla.novell.com/show_bug.cgi?id=661638#c3 --- Comment #3 from Brien O <[email protected]> 2010-12-28 21:55:01 UTC --- Ok, I was able to narrow it down. Try this in an app: this.thread = new Thread(delegate() { System.Collections.ArrayList list = new System.Collections.ArrayList(); int i = 0; while (true) { System.Console.WriteLine("hello " + ++i); var req = System.Net.WebRequest.Create("http://www.google.com/"); var resp = req.GetResponse(); list.Add(resp); Thread.Sleep(1000); } }); thread.Name = "ThisOne"; thread.Start(); -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
