diff src/share/vm/gc_implementation/g1/concurrentZFThread.cpp @ 1026:f99f695bb8ef

Merge
author tonyp
date Mon, 19 Oct 2009 17:02:19 -0400
parents 89e0543e1737 035d2e036a9b
children c18cbe5936b8
line wrap: on
line diff
--- a/src/share/vm/gc_implementation/g1/concurrentZFThread.cpp	Fri Oct 16 14:08:44 2009 -0700
+++ b/src/share/vm/gc_implementation/g1/concurrentZFThread.cpp	Mon Oct 19 17:02:19 2009 -0400
@@ -157,10 +157,14 @@
   }
 }
 
-void ConcurrentZFThread::print() {
-  gclog_or_tty->print("\"Concurrent ZF Thread\" ");
-  Thread::print();
-  gclog_or_tty->cr();
+void ConcurrentZFThread::print() const {
+  print_on(tty);
+}
+
+void ConcurrentZFThread::print_on(outputStream* st) const {
+  st->print("\"G1 Concurrent Zero-Fill Thread\" ");
+  Thread::print_on(st);
+  st->cr();
 }