comparison src/share/vm/gc_interface/gcCause.cpp @ 20522:d3fd73295885

8059466: Force young GC to initiate marking cycle when stat update is requested Summary: Enable yc to be forced for stat update. Reviewed-by: mgerdin, jcoomes
author sjohanss
date Mon, 06 Oct 2014 10:11:13 +0200
parents dce3f772de9f
children 7848fc12602b 047a642c9729
comparison
equal deleted inserted replaced
20520:4001310db3f5 20522:d3fd73295885
52 return "Heap Dump Initiated GC"; 52 return "Heap Dump Initiated GC";
53 53
54 case _wb_young_gc: 54 case _wb_young_gc:
55 return "WhiteBox Initiated Young GC"; 55 return "WhiteBox Initiated Young GC";
56 56
57 case _update_allocation_context_stats: 57 case _update_allocation_context_stats_inc:
58 case _update_allocation_context_stats_full:
58 return "Update Allocation Context Stats"; 59 return "Update Allocation Context Stats";
59 60
60 case _no_gc: 61 case _no_gc:
61 return "No GC"; 62 return "No GC";
62 63