comparison agent/src/share/classes/sun/jvm/hotspot/memory/DefNewGeneration.java @ 152:c70a245cad3a

6670684: 4/5 SA command universe did not print out CMS space information Summary: Forward port of Yumin's fix for 6670684 from HSX-11; Yumin verified the port was correct. Reviewed-by: dcubed
author dcubed
date Fri, 09 May 2008 08:55:13 -0700
parents a61af66fc99e
children d1605aabd0a1
comparison
equal deleted inserted replaced
83:d3cd40645d0d 152:c70a245cad3a
94 } 94 }
95 95
96 public void printOn(PrintStream tty) { 96 public void printOn(PrintStream tty) {
97 tty.print(" eden"); 97 tty.print(" eden");
98 eden().printOn(tty); 98 eden().printOn(tty);
99 tty.print(" from"); 99 tty.print("\n from");
100 from().printOn(tty); 100 from().printOn(tty);
101 tty.print(" to "); 101 tty.print("\n to ");
102 to().printOn(tty); 102 to().printOn(tty);
103 } 103 }
104 } 104 }