initial import

This commit is contained in:
SourceFellows
2020-08-21 06:26:40 +02:00
commit e223458dd4
423 changed files with 9871 additions and 0 deletions

View File

@ -0,0 +1,40 @@
import java.util.concurrent.Semaphore;
import java.util.concurrent.atomic.AtomicBoolean;
public class Main {
static int count = 0;
public static void main(String[] args) {
new Thread(new Runnable() {
@Override
public void run() {
while (true) {
count++;
try {
new Thread(new Runnable() {
@Override
public void run() {
while (true) {
try {
Thread.sleep(120000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("Thread Hello " + count);
}
}
}).start();
} catch (Throwable e) {
e.printStackTrace();
System.exit(1);
}
System.out.println("create native thread "+ count);
}
}
}).start();
}
}