src/hotspot/share/jfr/recorder/storage/jfrMemorySpace.hpp
changeset 58863 c16ac7a2eba4
parent 58132 caa25ab47aca
equal deleted inserted replaced
58861:2c3cc4b01880 58863:c16ac7a2eba4
    97   Type* get(size_t size, Thread* thread) { return Retrieval::get(size, this, thread); }
    97   Type* get(size_t size, Thread* thread) { return Retrieval::get(size, this, thread); }
    98 
    98 
    99   template <typename IteratorCallback, typename IteratorType>
    99   template <typename IteratorCallback, typename IteratorType>
   100   void iterate(IteratorCallback& callback, bool full = true, jfr_iter_direction direction = forward);
   100   void iterate(IteratorCallback& callback, bool full = true, jfr_iter_direction direction = forward);
   101 
   101 
   102   debug_only(bool in_full_list(const Type* t) const { return _full.in_list(t); })
   102   bool in_full_list(const Type* t) const { return _full.in_list(t); }
   103   debug_only(bool in_free_list(const Type* t) const { return _free.in_list(t); })
   103   bool in_free_list(const Type* t) const { return _free.in_list(t); }
   104 };
   104 };
   105 
   105 
   106 #endif // SHARE_JFR_RECORDER_STORAGE_JFRMEMORYSPACE_HPP
   106 #endif // SHARE_JFR_RECORDER_STORAGE_JFRMEMORYSPACE_HPP