comparison src/share/vm/gc_implementation/g1/vm_operations_g1.hpp @ 20767:ee10217e3d03

Merge
author asaha
date Wed, 05 Nov 2014 15:35:11 -0800
parents 1d6eb209432a
children
comparison
equal deleted inserted replaced
20766:d961743b7897 20767:ee10217e3d03
58 class VM_G1CollectFull: public VM_GC_Operation { 58 class VM_G1CollectFull: public VM_GC_Operation {
59 public: 59 public:
60 VM_G1CollectFull(unsigned int gc_count_before, 60 VM_G1CollectFull(unsigned int gc_count_before,
61 unsigned int full_gc_count_before, 61 unsigned int full_gc_count_before,
62 GCCause::Cause cause) 62 GCCause::Cause cause)
63 : VM_GC_Operation(gc_count_before, cause, full_gc_count_before) { } 63 : VM_GC_Operation(gc_count_before, cause, full_gc_count_before, true) { }
64 virtual VMOp_Type type() const { return VMOp_G1CollectFull; } 64 virtual VMOp_Type type() const { return VMOp_G1CollectFull; }
65 virtual void doit(); 65 virtual void doit();
66 virtual const char* name() const { 66 virtual const char* name() const {
67 return "full garbage-first collection"; 67 return "full garbage-first collection";
68 } 68 }