Home | History | Annotate | Download | only in collator

Lines Matching refs:threads

229     private void runThreads(Thread[] threads, Control control) {
230 for (int i = 0; i < threads.length; ++i) {
231 threads[i].start();
244 for (int i = 0; i < threads.length; ++i) {
245 threads[i].join();
262 Thread[] threads = new Thread[10];
263 for (int i = 0; i < threads.length; ++i) {
274 threads[i] = new Thread(test);
277 runThreads(threads, control);
287 Thread[] threads = new Thread[10];
288 for (int i = 0; i < threads.length; ++i) {
291 threads[i] = new Thread(test);
294 runThreads(threads, control);