import org.jugile.util.Timer;
public class DomainLockTest extends Thread {
public static void main(String args[]) {
Timer t = new Timer();
t = new Timer();
int numOfThreads = 40;
for (int i = 0; i < numOfThreads; i++) {
new DomainLockTest("th"+i, t).start();
}
}