Commit 2796eca authored and committed Aug 23, 2022
1 parent e3c178d commit 2796eca Copy full SHA for 2796eca
File tree 1 file changed +7
-5
lines changed
src/hotspot/share/classfile
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -968,11 +968,13 @@ void ClassLoaderData::print_on(outputStream* out) const {
968
968
out->print_cr (" - keep alive %d" , _keep_alive);
969
969
out->print (" - claim " );
970
970
switch (_claim) {
971
- case _claim_none: out->print_cr (" none" ); break ;
972
- case _claim_finalizable:out->print_cr (" finalizable" ); break ;
973
- case _claim_strong: out->print_cr (" strong" ); break ;
974
- case _claim_other: out->print_cr (" other" ); break ;
975
- default : ShouldNotReachHere ();
971
+ case _claim_none: out->print_cr (" none" ); break ;
972
+ case _claim_finalizable: out->print_cr (" finalizable" ); break ;
973
+ case _claim_strong: out->print_cr (" strong" ); break ;
974
+ case _claim_other: out->print_cr (" other" ); break ;
975
+ case _claim_other | _claim_finalizable: out->print_cr (" other and finalizable" ); break ;
976
+ case _claim_other | _claim_strong: out->print_cr (" other and strong" ); break ;
977
+ default : ShouldNotReachHere ();
976
978
}
977
979
out->print_cr (" - handles %d" , _handles.count ());
978
980
out->print_cr (" - dependency count %d" , _dependency_count);
You can’t perform that action at this time.
1 commit comments
openjdk-notifier[bot] commentedon Aug 23, 2022
Review
Issues