comparison agent/src/share/classes/sun/jvm/hotspot/tools/PStack.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 39432a1cefdd
children 7fe6ef09d242
comparison
equal deleted inserted replaced
11035:01e10b366055 11054:38ea2efa32a7
41 this.concurrentLocks = concurrentLocks; 41 this.concurrentLocks = concurrentLocks;
42 } 42 }
43 43
44 public PStack() { 44 public PStack() {
45 this(true, true); 45 this(true, true);
46 }
47
48 public PStack(JVMDebugger d) {
49 super(d);
46 } 50 }
47 51
48 public void run() { 52 public void run() {
49 run(System.out); 53 run(System.out);
50 } 54 }