1 using System
.Threading
;
10 for (int i
= 0; i
< count
; ++i
) {
17 for (int i
= 0; i
< 10000000; ++i
) {
25 for (int i
= 0; i
< 10000000; ++i
) {
31 static int Main (string[] args
) {
33 count
= int.Parse (args
[0]);
34 Thread t
= new Thread (test2
);
35 t
.Name
= "BusyHelper";
38 for (int i
= 0; i
< count
; ++i
) {