src/hotspot/share/gc/parallel/psYoungGen.cpp
changeset 57662 f81dbe27a7b1
parent 54678 93f09ca4a7f8
child 57777 90ead0febf56
equal deleted inserted replaced
57661:5cc8f9225a6d 57662:f81dbe27a7b1
   764   st->print("  eden"); eden_space()->print_on(st);
   764   st->print("  eden"); eden_space()->print_on(st);
   765   st->print("  from"); from_space()->print_on(st);
   765   st->print("  from"); from_space()->print_on(st);
   766   st->print("  to  "); to_space()->print_on(st);
   766   st->print("  to  "); to_space()->print_on(st);
   767 }
   767 }
   768 
   768 
   769 // Note that a space is not printed before the [NAME:
       
   770 void PSYoungGen::print_used_change(size_t prev_used) const {
       
   771   log_info(gc, heap)("%s: "  SIZE_FORMAT "K->" SIZE_FORMAT "K("  SIZE_FORMAT "K)",
       
   772       name(), prev_used / K, used_in_bytes() / K, capacity_in_bytes() / K);
       
   773 }
       
   774 
       
   775 size_t PSYoungGen::available_for_expansion() {
   769 size_t PSYoungGen::available_for_expansion() {
   776   ShouldNotReachHere();
   770   ShouldNotReachHere();
   777   return 0;
   771   return 0;
   778 }
   772 }
   779 
   773