Home | History | Annotate | Download | only in VirtualMachine

Lines Matching refs:threads

30     // The method used to suspend threads on breakpoint.
59 // Create tested threads.
60 Thread[] threads = new Thread[THREAD_COUNT];
61 for (int i = 0; i < threads.length; ++i) {
62 threads[i] = new ResumeThread(i);
65 // Start threads.
66 logWriter.println("Starting threads");
67 for (Thread t : threads) {
71 // Wait for all tested threads to finish.
72 logWriter.println("Waiting end of threads");
73 for (Thread t : threads) {
80 logWriter.println("All threads terminated");
82 // Tell the debugger all threads terminated.