8246622: Remove CollectedHeap::print_gc_threads_on()

Reviewed-by: stefank, tschatzl, sjohanss
This commit is contained in:
Per Lidén 2020-06-05 15:22:53 +02:00
parent c66bef0289
commit 06e47d05b6
27 changed files with 31 additions and 127 deletions

View file

@ -429,13 +429,6 @@ class CollectedHeap : public CHeapObj<mtInternal> {
// Used to print information about locations in the hs_err file.
virtual bool print_location(outputStream* st, void* addr) const = 0;
// 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.
void print_gc_threads() {
print_gc_threads_on(tty);
}
// Iterator for all GC threads (other than VM thread)
virtual void gc_threads_do(ThreadClosure* tc) const = 0;