< prev index next >

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

Print this page
rev 8031 : imported patch cms

*** 25,36 **** #include "precompiled.hpp" #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp" #include "memory/freeBlockDictionary.hpp" #include "utilities/copy.hpp" - PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC - #ifndef PRODUCT #define baadbabeHeapWord badHeapWordVal #define deadbeefHeapWord 0xdeadbeef --- 25,34 ----
*** 72,78 **** } #endif void FreeChunk::print_on(outputStream* st) { st->print_cr("Next: " PTR_FORMAT " Prev: " PTR_FORMAT " %s", ! next(), prev(), cantCoalesce() ? "[can't coalesce]" : ""); } --- 70,76 ---- } #endif void FreeChunk::print_on(outputStream* st) { st->print_cr("Next: " PTR_FORMAT " Prev: " PTR_FORMAT " %s", ! p2i(next()), p2i(prev()), cantCoalesce() ? "[can't coalesce]" : ""); }
< prev index next >