diff src/share/vm/memory/generation.hpp @ 17727:cfd4aac53239

8030177: G1: Enable TLAB resizing Reviewed-by: tschatzl, stefank, jmasa
author brutisso
date Mon, 27 Jan 2014 13:14:53 +0100
parents 55fb97c4c58d
children 78bbf4d43a14
line wrap: on
line diff
--- a/src/share/vm/memory/generation.hpp	Thu Jan 23 12:08:28 2014 +0100
+++ b/src/share/vm/memory/generation.hpp	Mon Jan 27 13:14:53 2014 +0100
@@ -299,6 +299,10 @@
     guarantee(false, "Generation doesn't support thread local allocation buffers");
     return 0;
   }
+  virtual size_t tlab_used() const {
+    guarantee(false, "Generation doesn't support thread local allocation buffers");
+    return 0;
+  }
   virtual size_t unsafe_max_tlab_alloc() const {
     guarantee(false, "Generation doesn't support thread local allocation buffers");
     return 0;