[rx] add missing project file generator helper files.
[mono-project.git] / mono / tests / exit-stress-threadpool.cs
blob12945254c1200ce52800563684be6ac3dfedeede
1 // https://bugzilla.novell.com/show_bug.cgi?id=593955
2 using System;
3 using System.Threading;
5 public class Tests
7 public static void Main (String[] args) {
8 new Thread (delegate () {
9 Thread.Sleep (100);
10 Environment.Exit (0);
11 }).Start ();
13 while (true) {
14 Action a = delegate () {
16 a.BeginInvoke (null, null);