JDK 11 jdk.hotspot.agent.jmod - Hotspot Agent Module

JDK 11 jdk.hotspot.agent.jmod is the JMOD file for JDK 11 Hotspot Agent module.

JDK 11 Hotspot Agent module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.hotspot.agent.jmod.

JDK 11 Hotspot Agent module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.

JDK 11 Hotspot Agent module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.hotspot.agent.

You can click and view the content of each source code file in the list below.

✍: FYIcenter

sun/jvm/hotspot/runtime/ThreadState.java

/*
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */

package sun.jvm.hotspot.runtime;

/** This is a type-safe enum mirroring the ThreadState enum in
 osThread.hpp. The conversion between the underlying ints
 and these values is done in OSThread. */

public class ThreadState {

    private String printVal;

    /** Memory has been allocated but not initialized */
    public static final ThreadState ALLOCATED = new ThreadState("allocated");
    /** The thread has been initialized but yet started */
    public static final ThreadState INITIALIZED = new ThreadState("initialized");
    /** Has been started and is runnable, but not necessarily running */
    public static final ThreadState RUNNABLE = new ThreadState("runnable");
    /** Waiting on a contended monitor lock */
    public static final ThreadState MONITOR_WAIT = new ThreadState("waiting for monitor entry");
    /** Waiting on a condition variable */
    public static final ThreadState CONDVAR_WAIT = new ThreadState("waiting on condition");
    /** Waiting on an Object.wait() call */
    public static final ThreadState OBJECT_WAIT = new ThreadState("in Object.wait()");
    /** Suspended at breakpoint */
    public static final ThreadState BREAKPOINTED = new ThreadState("at breakpoint");
    /** Thread.sleep() */
    public static final ThreadState SLEEPING = new ThreadState("sleeping");
    /** All done, but not reclaimed yet */
    public static final ThreadState ZOMBIE = new ThreadState("zombie");

    private ThreadState(String printVal){
        this.printVal = printVal;
    }

    public String getPrintVal() {
        return printVal;
    }
}

sun/jvm/hotspot/runtime/ThreadState.java

 

Or download all of them as a single archive file:

File name: jdk.hotspot.agent-11.0.1-src.zip
File size: 1243786 bytes
Release date: 2018-11-04
Download 

 

JDK 11 jdk.httpserver.jmod - HTTP Server Module

JDK 11 jdk.editpad.jmod - Edit Pad Module

Download and Use JDK 11

⇑⇑ FAQ for JDK (Java Development Kit)

2020-02-29, 130137👍, 0💬