/* * Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
@Override publicvoid run() { try { // Tell main thread we have started.
startSyncObj.countDown(); try { // Wait for main thread to tell us to race to the exit.
exitSyncObj.await();
} catch (InterruptedException e) { thrownew RuntimeException("Unexpected: " + e);
}
} catch (ThreadDeath td) { // ignore because we're testing JVM/TI StopThread() which throws it
} catch (NoClassDefFoundError ncdfe) { // ignore because we're testing JVM/TI StopThread() which can cause it
}
}
publicstaticvoid main(String[] args) { int timeMax = 0; if (args.length == 0) {
timeMax = DEF_TIME_MAX;
} else { try {
timeMax = Integer.parseUnsignedInt(args[0]);
} catch (NumberFormatException nfe) {
System.err.println("'" + args[0] + "': invalid timeMax value.");
usage();
}
}
timeMax /= 2; // Split time between the two sub-tests.
test(timeMax);
// Fire-up deamon that just creates new threads. This generates contention on // Threads_lock while worker tries to exit, creating more places where target // can be seen as handshake safe. Thread threadCreator = newThread() {
@Override publicvoid run() { while (true) { Thread dummyThread = newThread(() -> {});
dummyThread.start(); try {
dummyThread.join();
} catch(InterruptedException ie) {
}
}
}
};
threadCreator.setDaemon(true);
threadCreator.start();
test(timeMax);
}
publicstaticvoid test(int timeMax) {
System.out.println("About to execute for " + timeMax + " seconds.");
long count = 0; long start_time = System.currentTimeMillis(); while (System.currentTimeMillis() < start_time + (timeMax * 1000)) {
count++;
int retCode;
StopAtExit thread = new StopAtExit(); thread.start(); try { // Wait for the worker thread to get going. thread.startSyncObj.await(); // Tell the worker thread to race to the exit and the // JVM/TI StopThread() calls will come in during thread exit. thread.exitSyncObj.countDown(); long inner_count = 0; while (true) {
inner_count++;
// Throw RuntimeException before ThreadDeath since a // ThreadDeath can also be queued up when there's already // a non-ThreadDeath async execution queued up.
Throwable myException; if ((inner_count % 1) == 1) {
myException = new RuntimeException();
} else {
myException = new ThreadDeath();
}
retCode = stopThread(thread, myException);
if (retCode == JVMTI_ERROR_THREAD_NOT_ALIVE) { // Done with JVM/TI StopThread() calls since // thread is not alive. break;
} elseif (retCode != 0) { thrownew RuntimeException("thread " + thread.getName()
+ ": stopThread() " + "retCode=" + retCode + ": unexpected value.");
}
if (!thread.isAlive()) { // Done with JVM/TI StopThread() calls since // thread is not alive. break;
}
}
} catch (InterruptedException e) { thrownew Error("Unexpected: " + e);
} catch (NoClassDefFoundError ncdfe) { // Ignore because we're testing JVM/TI StopThread() which can // cause it. Yes, a NoClassDefFoundError that happens // in a worker thread can subsequently be seen in the // main thread.
}
try { thread.join();
} catch (InterruptedException e) { thrownew Error("Unexpected: " + e);
} // This JVM/TI StopThread() happens after the join() so it // should do nothing, but let's make sure.
retCode = stopThread(thread, new ThreadDeath());
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.