comparison agent/src/share/classes/sun/jvm/hotspot/tools/StackTrace.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 da91efe96a93
children 7fe6ef09d242
comparison
equal deleted inserted replaced
11035:01e10b366055 11054:38ea2efa32a7
41 this(true, true); 41 this(true, true);
42 } 42 }
43 43
44 public void run() { 44 public void run() {
45 run(System.out); 45 run(System.out);
46 }
47
48 public StackTrace(JVMDebugger d) {
49 super(d);
50 }
51
52 public StackTrace(JVMDebugger d, boolean v, boolean concurrentLocks) {
53 super(d);
54 this.verbose = v;
55 this.concurrentLocks = concurrentLocks;
46 } 56 }
47 57
48 public void run(java.io.PrintStream tty) { 58 public void run(java.io.PrintStream tty) {
49 // Ready to go with the database... 59 // Ready to go with the database...
50 try { 60 try {