comparison src/share/vm/gc_interface/collectedHeap.hpp @ 8502:ff4fa8b0516e

-Create push patch
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Wed, 20 Mar 2013 20:13:08 +0100
parents 59c790074993
children 86b4965f0c9a
comparison
equal deleted inserted replaced
8501:41fc46da946a 8502:ff4fa8b0516e
481 // collector -- dld). 481 // collector -- dld).
482 bool is_gc_active() const { return _is_gc_active; } 482 bool is_gc_active() const { return _is_gc_active; }
483 483
484 // Total number of GC collections (started) 484 // Total number of GC collections (started)
485 unsigned int total_collections() const { return _total_collections; } 485 unsigned int total_collections() const { return _total_collections; }
486 unsigned int* total_collections_address() { return &_total_collections; }
486 unsigned int total_full_collections() const { return _total_full_collections;} 487 unsigned int total_full_collections() const { return _total_full_collections;}
487 488
488 // Increment total number of GC collections (started) 489 // Increment total number of GC collections (started)
489 // Should be protected but used by PSMarkSweep - cleanup for 1.4.2 490 // Should be protected but used by PSMarkSweep - cleanup for 1.4.2
490 void increment_total_collections(bool full = false) { 491 void increment_total_collections(bool full = false) {