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

Print this page

        

*** 43,52 **** --- 43,62 ---- public void run() { run(System.out); } + public StackTrace(JVMDebugger d) { + super(d); + } + + public StackTrace(JVMDebugger d, boolean v, boolean concurrentLocks) { + super(d); + this.verbose = v; + this.concurrentLocks = concurrentLocks; + } + public void run(java.io.PrintStream tty) { // Ready to go with the database... try { // print deadlock information before stack trace DeadlockDetector.print(tty);