< prev index next >

test/serviceability/tmtools/jstack/WaitNotifyThreadTest.java

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @summary  Call Object.wait() method. Check that monitor information
  27  *           presented in the stack is correct. Call notifyAll method
  28  *           monitor info have to disappear from the stack.
  29  *           Repeats the same scenario calling interrupt() method
  30  * @modules java.base/jdk.internal.misc
  31  * @library /test/lib/share/classes
  32  * @library ../share
  33  * @build common.*
  34  *
  35  * @run main/othervm -XX:+UsePerfData WaitNotifyThreadTest
  36  */
  37 import common.ToolResults;
  38 import java.util.Iterator;
  39 import utils.*;
  40 
  41 public class WaitNotifyThreadTest {
  42 
  43     private Object monitor = new Object();
  44     private final String OBJECT = "a java.lang.Object";
  45     private final String OBJECT_WAIT = "java.lang.Object.wait";
  46 
  47     interface Action {
  48 
  49         void doAction(Thread thread);
  50     }
  51 
  52     class ActionNotify implements Action {
  53 
  54         @Override




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @summary  Call Object.wait() method. Check that monitor information
  27  *           presented in the stack is correct. Call notifyAll method
  28  *           monitor info have to disappear from the stack.
  29  *           Repeats the same scenario calling interrupt() method
  30  * @modules java.base/jdk.internal.misc
  31  * @library /test/lib
  32  * @library ../share


  33  * @run main/othervm -XX:+UsePerfData WaitNotifyThreadTest
  34  */
  35 import common.ToolResults;
  36 import java.util.Iterator;
  37 import utils.*;
  38 
  39 public class WaitNotifyThreadTest {
  40 
  41     private Object monitor = new Object();
  42     private final String OBJECT = "a java.lang.Object";
  43     private final String OBJECT_WAIT = "java.lang.Object.wait";
  44 
  45     interface Action {
  46 
  47         void doAction(Thread thread);
  48     }
  49 
  50     class ActionNotify implements Action {
  51 
  52         @Override


< prev index next >