src/hotspot/share/gc/shared/generation.hpp
changeset 55539 734e58d8477b
parent 54786 ebf733a324d4
child 55557 657924d1e2ba
--- a/src/hotspot/share/gc/shared/generation.hpp	Mon Jul 01 08:24:45 2019 -0400
+++ b/src/hotspot/share/gc/shared/generation.hpp	Mon Jul 01 18:24:06 2019 +0000
@@ -156,6 +156,7 @@
   virtual size_t capacity() const = 0;  // The maximum number of object bytes the
                                         // generation can currently hold.
   virtual size_t used() const = 0;      // The number of used bytes in the gen.
+  virtual size_t used_stable() const;   // The number of used bytes for memory monitoring tools.
   virtual size_t free() const = 0;      // The number of free bytes in the gen.
 
   // Support for java.lang.Runtime.maxMemory(); see CollectedHeap.