Home | History | Annotate | Download | only in collator

Lines Matching refs:threads

226     private void runThreads(Thread[] threads, Control control) {
227 for (int i = 0; i < threads.length; ++i) {
228 threads[i].start();
241 for (int i = 0; i < threads.length; ++i) {
242 threads[i].join();
259 Thread[] threads = new Thread[10];
260 for (int i = 0; i < threads.length; ++i) {
271 threads[i] = new Thread(test);
274 runThreads(threads, control);
284 Thread[] threads = new Thread[10];
285 for (int i = 0; i < threads.length; ++i) {
288 threads[i] = new Thread(test);
291 runThreads(threads, control);