X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Ftests%2Fthreadpool.cs;h=75791e37f4c8b1f87fc9a10338779a983334142d;hb=ac1d494270ac25b3fd885ef7d8b52cb27109861d;hp=cfcc6ee4c8a256fe1bdcbf724dc684ab8769ae9b;hpb=1c14f1ee6d701510c15499d71fc2b324151a8629;p=mono.git diff --git a/mono/tests/threadpool.cs b/mono/tests/threadpool.cs index cfcc6ee4c8a..75791e37f4c 100644 --- a/mono/tests/threadpool.cs +++ b/mono/tests/threadpool.cs @@ -1,12 +1,13 @@ using System; using System.Threading; -public class Test { +public class ThreadPoolTest +{ static int csum = 0; public static void test_callback (object state) { - Console.WriteLine("test_casllback:" + state); + Console.WriteLine("test_callback:" + state); Thread.Sleep (200); Interlocked.Increment (ref csum); }