/* * This file is part of the Jikes RVM project (http://jikesrvm.org). * * This file is licensed to You under the Eclipse Public License (EPL); * You may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.opensource.org/licenses/eclipse-1.0.php * * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. */ package test.org.jikesrvm.basic.core.threads; class TestDispatch { public static void main(String[] args) { final int threadCount = 2; final TestDispatchWorker[] workers = new TestDispatchWorker[threadCount]; for (int i = 0; i < threadCount; i++) { workers[i] = new TestDispatchWorker("worker " + i); } for (final TestDispatchWorker worker : workers) { worker.start(); } boolean done = false; while (!done) { Thread.yield(); done = true; for (final TestDispatchWorker worker : workers) { done &= worker.completed; } } XThread.say("bye"); XThread.outputMessages(); } static class TestDispatchWorker extends XThread { TestDispatchWorker(String name) { super(name); } void performTask() { for (int i = 0; i < 4; ++i) { XThread.say("sleeping"); try { sleep(1000); } catch (InterruptedException e) {} XThread.say("running"); System.gc(); XThread.say("gc completed"); } } } }