src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.cpp

changeset 1580
e018e6884bd8
parent 631
d1605aabd0a1
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.cpp	Wed Dec 16 15:12:51 2009 -0800
     1.2 +++ b/src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.cpp	Wed Dec 23 09:23:54 2009 -0800
     1.3 @@ -67,3 +67,8 @@
     1.4    }
     1.5  }
     1.6  #endif
     1.7 +
     1.8 +void FreeChunk::print_on(outputStream* st) {
     1.9 +  st->print_cr("Next: " PTR_FORMAT " Prev: " PTR_FORMAT " %s",
    1.10 +    next(), prev(), cantCoalesce() ? "[can't coalesce]" : "");
    1.11 +}

mercurial