File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -428,7 +428,7 @@ bool G1HeapRegion::verify_code_roots(VerifyOption vo) const {
428428void G1HeapRegion::print () const { print_on (tty); }
429429
430430void G1HeapRegion::print_on (outputStream* st) const {
431- st->print (" |%4u " , this ->_hrm_index );
431+ st->print (" |%5u " , this ->_hrm_index );
432432 st->print (" |" PTR_FORMAT " , " PTR_FORMAT " , " PTR_FORMAT,
433433 p2i (bottom ()), p2i (top ()), p2i (end ()));
434434 st->print (" |%3d%%" , (int ) ((double ) used () * 100 / capacity ()));
@@ -442,7 +442,7 @@ void G1HeapRegion::print_on(outputStream* st) const {
442442 st->print (" | " );
443443 }
444444 G1ConcurrentMark* cm = G1CollectedHeap::heap ()->concurrent_mark ();
445- st->print (" |TAMS " PTR_FORMAT " | PB " PTR_FORMAT " | %s " ,
445+ st->print (" |TAMS " PTR_FORMAT " | PB " PTR_FORMAT " | %-9s " ,
446446 p2i (cm->top_at_mark_start (this )), p2i (parsable_bottom_acquire ()), rem_set ()->get_state_str ());
447447 if (UseNUMA) {
448448 G1NUMA* numa = G1NUMA::numa ();
You can’t perform that action at this time.
0 commit comments