src/hotspot/share/memory/metaspaceShared.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File open Cdiff src/hotspot/share/memory/metaspaceShared.cpp

src/hotspot/share/memory/metaspaceShared.cpp

Print this page

        

*** 1648,1658 **** if (IgnoreUnverifiableClassesDuringDump) { // This is useful when running JCK or SQE tests. You should not // enable this when running real apps. SystemDictionary::remove_classes_in_error_state(); } else { ! tty->print_cr("Please remove the unverifiable classes from your class list and try again"); exit(1); } } } --- 1648,1658 ---- if (IgnoreUnverifiableClassesDuringDump) { // This is useful when running JCK or SQE tests. You should not // enable this when running real apps. SystemDictionary::remove_classes_in_error_state(); } else { ! log_error(cds)("Please remove the unverifiable classes from your class list and try again"); exit(1); } } }
*** 2027,2044 **** // Close the mapinfo file mapinfo->close(); if (PrintSharedArchiveAndExit) { if (PrintSharedDictionary) { ! tty->print_cr("\nShared classes:\n"); SystemDictionary::print_shared(tty); } if (_archive_loading_failed) { ! tty->print_cr("archive is invalid"); vm_exit(1); } else { ! tty->print_cr("archive is valid"); vm_exit(0); } } } --- 2027,2044 ---- // Close the mapinfo file mapinfo->close(); if (PrintSharedArchiveAndExit) { if (PrintSharedDictionary) { ! log_info(cds)("\nShared classes:\n"); SystemDictionary::print_shared(tty); } if (_archive_loading_failed) { ! log_error(cds)("archive is invalid"); vm_exit(1); } else { ! log_info(cds)("archive is valid"); vm_exit(0); } } }
src/hotspot/share/memory/metaspaceShared.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File