8264644: Add PrintClassLoaderDataGraphAtExit to print the detailed CLD graph

Reviewed-by: coleenp, dholmes, shade
This commit is contained in:
Yi Yang 2021-04-12 08:23:20 +00:00 committed by Aleksey Shipilev
parent b1ebf82269
commit 440c34a62b
6 changed files with 61 additions and 15 deletions

View file

@ -325,6 +325,11 @@ void print_statistics() {
ResourceMark rm;
MutexLocker mcld(ClassLoaderDataGraph_lock);
SystemDictionary::print();
}
if (PrintClassLoaderDataGraphAtExit) {
ResourceMark rm;
MutexLocker mcld(ClassLoaderDataGraph_lock);
ClassLoaderDataGraph::print();
}