index

src/share/vm/gc_implementation/shared/gcTrace.hpp

Print this page
rev 7517 : const * instead of &

*** 151,161 **** protected: YoungGCTracer(GCName name) : GCTracer(name), _tenuring_threshold(UNSET_TENURING_THRESHOLD) {} virtual void report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions); public: ! void report_promotion_failed(const PromotionFailedInfo& pf_info); void report_tenuring_threshold(const uint tenuring_threshold); /* * Methods for reporting Promotion in new or outside PLAB Events. * --- 151,161 ---- protected: YoungGCTracer(GCName name) : GCTracer(name), _tenuring_threshold(UNSET_TENURING_THRESHOLD) {} virtual void report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions); public: ! void report_promotion_failed(const PromotionFailedInfo& pf_info) const; void report_tenuring_threshold(const uint tenuring_threshold); /* * Methods for reporting Promotion in new or outside PLAB Events. *
index