[Mono-bugs] [Bug 593955] ctrl-c makes process go into infinite sleep loop
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Wed Apr 7 17:32:01 EDT 2010
http://bugzilla.novell.com/show_bug.cgi?id=593955
http://bugzilla.novell.com/show_bug.cgi?id=593955#c9
--- Comment #9 from Zoltan Varga <vargaz at gmail.com> 2010-04-07 21:32:00 UTC ---
Testcase:
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
using System;
using System.Threading;
public class Tests
{
public static void Main (String[] args) {
new Thread (delegate () {
Thread.Sleep (100);
Environment.Exit (0);
}).Start ();
while (true) {
Action a = delegate () {
};
a.BeginInvoke (null, null);
}
}
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
--
Configure bugmail: http://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