8011872: Include Bit Map addresses in the hs_err files

Reviewed-by: brutisso, jmasa
This commit is contained in:
Stefan Karlsson 2013-04-10 14:26:49 +02:00
parent 0edccc9e61
commit e96efdaa1a
17 changed files with 98 additions and 7 deletions

View file

@ -648,6 +648,15 @@ void ParallelScavengeHeap::print_on(outputStream* st) const {
MetaspaceAux::print_on(st);
}
void ParallelScavengeHeap::print_on_error(outputStream* st) const {
this->CollectedHeap::print_on_error(st);
if (UseParallelOldGC) {
st->cr();
PSParallelCompact::print_on_error(st);
}
}
void ParallelScavengeHeap::gc_threads_do(ThreadClosure* tc) const {
PSScavenge::gc_task_manager()->threads_do(tc);
}