src/share/vm/gc_implementation/g1/g1CodeCacheRemSet.hpp

changeset 6932
828056cf311f
parent 6925
82693fb204a5
child 6992
2c6ef90f030a
     1.1 --- a/src/share/vm/gc_implementation/g1/g1CodeCacheRemSet.hpp	Mon Jul 21 09:40:19 2014 +0200
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1CodeCacheRemSet.hpp	Mon Jul 21 09:40:19 2014 +0200
     1.3 @@ -147,7 +147,7 @@
     1.4    void initialize();
     1.5    void purge_chunks(size_t keep_ratio);
     1.6  
     1.7 -  size_t static_mem_size();
     1.8 +  static size_t static_mem_size();
     1.9    size_t fl_mem_size();
    1.10  
    1.11  #ifndef PRODUCT
    1.12 @@ -186,7 +186,7 @@
    1.13  
    1.14    static void purge_chunks(size_t keep_ratio);
    1.15  
    1.16 -  static size_t static_mem_size();
    1.17 +  static size_t free_chunks_static_mem_size();
    1.18    static size_t free_chunks_mem_size();
    1.19  
    1.20    // Search for the code blob from the recently allocated ones to find duplicates more quickly, as this
    1.21 @@ -207,6 +207,8 @@
    1.22    // Length in elements
    1.23    size_t length() const { return _length; }
    1.24  
    1.25 +  // Static data memory size in bytes of this set.
    1.26 +  static size_t static_mem_size();
    1.27    // Memory size in bytes taken by this set.
    1.28    size_t mem_size();
    1.29  

mercurial