comparison src/share/vm/gc_interface/gcCause.cpp @ 23472:047a642c9729

8065579: WB method to start G1 concurrent mark cycle should be introduced Summary: Add a WhiteBox callback to the VM to start a concurrent mark cycle in G1. Reviewed-by: tschatzl, sjohanss Contributed-by: Leonid Mesnik <leonid.mesnik@oracle.com>
author kevinw
date Wed, 02 Dec 2015 13:58:34 +0530
parents d3fd73295885
children b5f3a471e646
comparison
equal deleted inserted replaced
23471:70649f10b88c 23472:047a642c9729
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 _wb_conc_mark:
58 return "WhiteBox Initiated Concurrent Mark";
59
57 case _update_allocation_context_stats_inc: 60 case _update_allocation_context_stats_inc:
58 case _update_allocation_context_stats_full: 61 case _update_allocation_context_stats_full:
59 return "Update Allocation Context Stats"; 62 return "Update Allocation Context Stats";
60 63
61 case _no_gc: 64 case _no_gc: