Bug 1364547 - Add number of slices to major GC summary, r=jonco

--HG--
extra : rebase_source : c7cdf4ef944c4bc227650e6027a59907bbf4fd21
This commit is contained in:
Steve Fink 2017-05-12 12:10:56 -07:00
Родитель dfe1e1a0cd
Коммит 496252c685
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -581,6 +581,7 @@ Statistics::formatJsonDescription(uint64_t timestamp, JSONPrinter& json) const
json.property("total_compartments", zoneStats.compartmentCount);
json.property("minor_gcs", counts[STAT_MINOR_GC]);
json.property("store_buffer_overflows", counts[STAT_STOREBUFFER_OVERFLOW]);
json.property("slices", slices_.length());
const double mmu20 = computeMMU(TimeDuration::FromMilliseconds(20));
const double mmu50 = computeMMU(TimeDuration::FromMilliseconds(50));