hotspot/src/share/vm/gc_interface/collectedHeap.hpp
changeset 27623 3f190bd7182f
parent 26842 5081db39f634
child 28940 c314cf1db3fa
--- a/hotspot/src/share/vm/gc_interface/collectedHeap.hpp	Mon Oct 27 19:15:23 2014 +0000
+++ b/hotspot/src/share/vm/gc_interface/collectedHeap.hpp	Thu Oct 30 10:51:06 2014 +0100
@@ -644,10 +644,13 @@
   // For each context in contexts, set the corresponding entries in the totals
   // and accuracy arrays to the current values held by the statistics.  Each
   // array should be of length len.
-  virtual void copy_allocation_context_stats(const jint* contexts,
+  // Returns true if there are more stats available.
+  virtual bool copy_allocation_context_stats(const jint* contexts,
                                              jlong* totals,
                                              jbyte* accuracy,
-                                             jint len) { }
+                                             jint len) {
+    return false;
+  }
 
   /////////////// Unit tests ///////////////