[Mono-bugs] [Bug 661638] Crash when stepping out
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Tue Dec 28 16:55:01 EST 2010
https://bugzilla.novell.com/show_bug.cgi?id=661638
https://bugzilla.novell.com/show_bug.cgi?id=661638#c3
--- Comment #3 from Brien O <brienpub at gmail.com> 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.
More information about the mono-bugs
mailing list