comparison agent/src/share/classes/sun/jvm/hotspot/tools/JStack.java @ 11054:38ea2efa32a7

8010278: SA: provide mechanism for using an alternative SA debugger back-end. Reviewed-by: sla, dsamersoff
author kevinw
date Wed, 26 Jun 2013 00:01:20 +0100
parents c18cbe5936b8
children 7fe6ef09d242
comparison
equal deleted inserted replaced
11035:01e10b366055 11054:38ea2efa32a7
22 * 22 *
23 */ 23 */
24 24
25 package sun.jvm.hotspot.tools; 25 package sun.jvm.hotspot.tools;
26 26
27 import sun.jvm.hotspot.debugger.JVMDebugger;
28
27 public class JStack extends Tool { 29 public class JStack extends Tool {
28 public JStack(boolean mixedMode, boolean concurrentLocks) { 30 public JStack(boolean mixedMode, boolean concurrentLocks) {
29 this.mixedMode = mixedMode; 31 this.mixedMode = mixedMode;
30 this.concurrentLocks = concurrentLocks; 32 this.concurrentLocks = concurrentLocks;
31 } 33 }
32 34
33 public JStack() { 35 public JStack() {
34 this(true, true); 36 this(true, true);
37 }
38
39 public JStack(JVMDebugger d) {
40 super(d);
35 } 41 }
36 42
37 protected boolean needsJavaPrefix() { 43 protected boolean needsJavaPrefix() {
38 return false; 44 return false;
39 } 45 }