/* * Copyright (c) 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.
*/
/** * @test id=platform_thread * @bug 8287847 * @summary Test suspending a platform thread after it has terminated. * @enablePreview * @requires vm.continuations * @run build TestScaffold VMConnection TargetListener TargetAdapter * @run compile SuspendAfterDeath.java * @run main/othervm SuspendAfterDeath
*/
/** * @test id=virtual_thread * @bug 8287847 * @summary Test suspending a virtual thread after it has terminated. * @enablePreview * @requires vm.continuations * @run build TestScaffold VMConnection TargetListener TargetAdapter * @run compile SuspendAfterDeath.java * @run main/othervm SuspendAfterDeath Virtual
*/
@Override publicvoid breakpointReached(BreakpointEvent event) {
ThreadReference eventThread = event.thread();
System.out.println("Breakpoint, thread=" + eventThread); if (targetThread == null) {
failure("FAILED: got Breakpoint event before ThreadDeath event.");
} else {
System.out.println("Target thread status at breakpoint: thread=" + targetThread + ", state=" + targetThread.status()); if (targetThread.status() != ThreadReference.THREAD_STATUS_ZOMBIE) {
failure("FAILED: wrong state for thread: " + targetThread.status());
}
breakpointReached = true; /* Suspend the thread. This is being done after the thread has exited. */
targetThread.suspend();
}
}
@Override publicvoid connect(String args[]) { if (useVirtualThread) { /* Append the "Virtual" argument to the arguments used for the debuggee. */
List<String> argList = new ArrayList(Arrays.asList(args));
argList.add("Virtual");
args = argList.toArray(args);
} super.connect(args);
}
// listener for ThreadDeathEvent captures reference to the thread
ThreadDeathRequest request1 = erm.createThreadDeathRequest();
request1.enable();
// listener for BreakpointEvent attempts to suspend the thread
ReferenceType targetClass = bpe.location().declaringType();
Location loc = findMethod(targetClass, "done", "()V").location();
BreakpointRequest request2 = erm.createBreakpointRequest(loc);
request2.setSuspendPolicy(EventRequest.SUSPEND_EVENT_THREAD);
request2.enable();
listenUntilVMDisconnect();
if (targetThread == null) {
failure("FAILED: never got ThreadDeath event for target thread.");
} if (!breakpointReached) {
failure("FAILED: never got Breakpoint event for target thread.");
}
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 und die Messung sind noch experimentell.