src/share/vm/gc_implementation/g1/concurrentMark.hpp

Print this page
rev 4803 : imported patch thomas-comments-2

*** 1255,1264 **** --- 1255,1267 ---- size_t _hum_next_live_bytes; // Accumulator for the remembered set size size_t _total_remset_bytes; + // Accumulator for strong code roots memory size + size_t _total_strong_code_roots_bytes; + static double perc(size_t val, size_t total) { if (total == 0) { return 0.0; } else { return 100.0 * ((double) val / (double) total);