< prev index next >

src/jdk.jdwp.agent/share/native/libjdwp/ThreadReferenceImpl.c

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2018, 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. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 2020, 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. Oracle designates this
*** 663,684 **** } } return JNI_TRUE; } ! ! void *ThreadReference_Cmds[] = { (void *)14, ! (void *)name, ! (void *)suspend, ! (void *)resume, ! (void *)status, ! (void *)threadGroup, ! (void *)frames, ! (void *)getFrameCount, ! (void *)ownedMonitors, ! (void *)currentContendedMonitor, ! (void *)stop, ! (void *)interrupt, ! (void *)suspendCount, ! (void *)ownedMonitorsWithStackDepth, ! (void *)forceEarlyReturn ! }; --- 663,686 ---- } } return JNI_TRUE; } ! CommandSet ThreadReference_Cmds = { ! 14, "ThreadReference", ! { ! {name, "Name"}, ! {suspend, "Suspend"}, ! {resume, "Resume"}, ! {status, "Status"}, ! {threadGroup, "ThreadGroup"}, ! {frames, "Frames"}, ! {getFrameCount, "GetFrameCount"}, ! {ownedMonitors, "OwnedMonitors"}, ! {currentContendedMonitor, "CurrentContendedMonitor"}, ! {stop, "Stop"}, ! {interrupt, "Interrupt"}, ! {suspendCount, "SuspendCount"}, ! {ownedMonitorsWithStackDepth, "OwnedMonitorsWithStackDepth"}, ! {forceEarlyReturn, "ForceEarlyReturn"} ! } ! };
< prev index next >