< prev index next >

src/share/vm/gc/g1/g1GCPhaseTimes.hpp

Print this page
rev 12512 : imported patch 8155094-logging-for-long-lasting-methods
rev 12513 : [mq]: 8155094-kim-review

@@ -98,11 +98,11 @@
   double _cur_string_dedup_fixup_time_ms;
 
   double _cur_prepare_tlab_time_ms;
   double _cur_resize_tlab_time_ms;
 
-  double _cur_dpt_update_time_ms;
+  double _cur_derived_pointer_table_update_time_ms;
   
   double _cur_clear_ct_time_ms;
   double _cur_expand_heap_time_ms;
   double _cur_ref_proc_time_ms;
   double _cur_ref_enq_time_ms;

@@ -185,12 +185,12 @@
 
   void record_resize_tlab_time_ms(double ms) {
     _cur_resize_tlab_time_ms = ms;
   }
 
-  void record_dpt_update_time(double ms) {
-    _cur_dpt_update_time_ms = ms;
+  void record_derived_pointer_table_update_time(double ms) {
+    _cur_derived_pointer_table_update_time_ms = ms;
   }
 
   void record_clear_ct_time(double ms) {
     _cur_clear_ct_time_ms = ms;
   }
< prev index next >