hotspot/src/share/vm/runtime/virtualspace.hpp
changeset 19989 0fc247fb59bc
parent 19546 f6b7c9e96ea3
child 19993 b1d392324718
--- a/hotspot/src/share/vm/runtime/virtualspace.hpp	Thu Sep 12 10:15:30 2013 +0200
+++ b/hotspot/src/share/vm/runtime/virtualspace.hpp	Thu Sep 12 10:15:54 2013 +0200
@@ -183,11 +183,16 @@
   // Destruction
   ~VirtualSpace();
 
-  // Testers (all sizes are byte sizes)
-  size_t committed_size()   const;
-  size_t reserved_size()    const;
+  // Reserved memory
+  size_t reserved_size() const;
+  // Actually committed OS memory
+  size_t actual_committed_size() const;
+  // Memory used/expanded in this virtual space
+  size_t committed_size() const;
+  // Memory left to use/expand in this virtual space
   size_t uncommitted_size() const;
-  bool   contains(const void* p)  const;
+
+  bool   contains(const void* p) const;
 
   // Operations
   // returns true on success, false otherwise