agent/src/share/classes/sun/jvm/hotspot/tools/JStack.java

Print this page

        

*** 22,41 **** --- 22,47 ---- * */ package sun.jvm.hotspot.tools; + import sun.jvm.hotspot.debugger.JVMDebugger; + public class JStack extends Tool { public JStack(boolean mixedMode, boolean concurrentLocks) { this.mixedMode = mixedMode; this.concurrentLocks = concurrentLocks; } public JStack() { this(true, true); } + public JStack(JVMDebugger d) { + super(d); + } + protected boolean needsJavaPrefix() { return false; } public String getName() {