Merge pull request #409 from Alkarex/patch-1
[mono.git] / mono / tests / thread.cs
old mode 100755 (executable)
new mode 100644 (file)
index cc8a06f..db2f11f
@@ -13,7 +13,7 @@ public class Test {
                Thread thr=new Thread(new ThreadStart(test.Thread_func));
                thr.Start();
                Console.WriteLine("In the main line!");
-               
+               thr.Join ();
                return 0;
        }
 }