comparison agent/src/share/classes/sun/jvm/hotspot/runtime/ThreadLocalAllocBuffer.java @ 13431:a4f036ef52e8

8029395: SA: jstack throws WrongTypeException Summary: SA missed some TLABs Reviewed-by: dsamersoff, mgerdin, brutisso
author sla
date Wed, 04 Dec 2013 14:43:50 +0100
parents ec0c4951286c
children de6a9e811145
comparison
equal deleted inserted replaced
13430:9a60f4ac6a37 13431:a4f036ef52e8
107 return (start().lessThanOrEqual(p) && top().greaterThan(p)); 107 return (start().lessThanOrEqual(p) && top().greaterThan(p));
108 } 108 }
109 109
110 public void printOn(PrintStream tty) { 110 public void printOn(PrintStream tty) {
111 tty.println(" [" + start() + "," + 111 tty.println(" [" + start() + "," +
112 top() + "," + end() + ")"); 112 top() + "," + end() + ",{" + hardEnd() + "})");
113 } 113 }
114 } 114 }