< prev index next >
src/share/vm/gc/g1/g1CollectedHeap.hpp
Print this page
rev 10868 : [mq]: 8153170-card-live-data-does-handle-eager-reclaim
@@ -241,11 +241,11 @@
HumongousReclaimCandidates _humongous_reclaim_candidates;
// Stores whether during humongous object registration we found candidate regions.
// If not, we can skip a few steps.
bool _has_humongous_reclaim_candidates;
- volatile unsigned _gc_time_stamp;
+ volatile uint _gc_time_stamp;
G1HRPrinter _hr_printer;
// It decides whether an explicit GC should start a concurrent cycle
// instead of doing a STW GC. Currently, a concurrent cycle is
@@ -993,11 +993,11 @@
G1RemSet* g1_rem_set() const { return _g1_rem_set; }
// Try to minimize the remembered set.
void scrub_rem_set();
- unsigned get_gc_time_stamp() {
+ uint get_gc_time_stamp() {
return _gc_time_stamp;
}
inline void reset_gc_time_stamp();
< prev index next >