diff src/share/vm/code/stubs.cpp @ 8151:b8f261ba79c6

Minimize diff to plain HotSpot version.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Mar 2013 21:00:29 +0100
parents a7a93887b4c4
children b9a918201d47
line wrap: on
line diff
--- a/src/share/vm/code/stubs.cpp	Thu Mar 07 15:17:51 2013 +0100
+++ b/src/share/vm/code/stubs.cpp	Thu Mar 07 21:00:29 2013 +0100
@@ -254,9 +254,10 @@
   guarantee(_queue_begin != _queue_end || n == 0, "buffer indices must be the same");
 }
 
-void StubQueue::print_on(outputStream* st) const {
+
+void StubQueue::print() {
   MutexLockerEx lock(_mutex);
   for (Stub* s = first(); s != NULL; s = next(s)) {
-    stub_print(s, st);
+    stub_print(s);
   }
 }