< prev index next >

src/share/vm/gc_interface/collectedHeap.hpp

Print this page
rev 7800 : [mq]: cleanupOopInlineHpp

*** 26,36 **** #define SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_HPP #include "gc_interface/gcCause.hpp" #include "gc_implementation/shared/gcWhen.hpp" #include "memory/allocation.hpp" - #include "memory/barrierSet.hpp" #include "runtime/handles.hpp" #include "runtime/perfData.hpp" #include "runtime/safepoint.hpp" #include "utilities/events.hpp" --- 26,35 ----
*** 574,590 **** // it needs. virtual void print_extended_on(outputStream* st) const { print_on(st); } ! virtual void print_on_error(outputStream* st) const { ! st->print_cr("Heap:"); ! print_extended_on(st); ! st->cr(); ! ! _barrier_set->print_on(st); ! } // Print all GC threads (other than the VM thread) // used by this heap. virtual void print_gc_threads_on(outputStream* st) const = 0; // The default behavior is to call print_gc_threads_on() on tty. --- 573,583 ---- // it needs. virtual void print_extended_on(outputStream* st) const { print_on(st); } ! virtual void print_on_error(outputStream* st) const; // Print all GC threads (other than the VM thread) // used by this heap. virtual void print_gc_threads_on(outputStream* st) const = 0; // The default behavior is to call print_gc_threads_on() on tty.
< prev index next >