comparison src/share/vm/gc_implementation/g1/g1CollectedHeap.hpp @ 20417:d35872270666

8057658: Enable G1 FullGC extensions Summary: Refactored the G1 FullGC code to enable it to be extended. Reviewed-by: mgerdin, brutisso
author sjohanss
date Tue, 09 Sep 2014 00:05:25 +0200
parents 227a9e5e4b4a
children e5668dcf12e9
comparison
equal deleted inserted replaced
20416:99f0593d8c9f 20417:d35872270666
617 // Enqueue any remaining discovered references 617 // Enqueue any remaining discovered references
618 // after processing. 618 // after processing.
619 void enqueue_discovered_references(uint no_of_gc_workers); 619 void enqueue_discovered_references(uint no_of_gc_workers);
620 620
621 public: 621 public:
622
623 G1Allocator* allocator() {
624 return _allocator;
625 }
622 626
623 G1MonitoringSupport* g1mm() { 627 G1MonitoringSupport* g1mm() {
624 assert(_g1mm != NULL, "should have been initialized"); 628 assert(_g1mm != NULL, "should have been initialized");
625 return _g1mm; 629 return _g1mm;
626 } 630 }