hotspot/src/share/vm/classfile/systemDictionary.cpp
changeset 27247 99db666dbe8e
parent 26911 8f2c7a83220f
child 27673 df559a888b9f
child 27677 b1997f2f1b56
--- a/hotspot/src/share/vm/classfile/systemDictionary.cpp	Tue Oct 14 20:35:45 2014 +0000
+++ b/hotspot/src/share/vm/classfile/systemDictionary.cpp	Thu Oct 02 10:55:36 2014 +0200
@@ -1690,9 +1690,9 @@
 
 // Assumes classes in the SystemDictionary are only unloaded at a safepoint
 // Note: anonymous classes are not in the SD.
-bool SystemDictionary::do_unloading(BoolObjectClosure* is_alive) {
+bool SystemDictionary::do_unloading(BoolObjectClosure* is_alive, bool clean_alive) {
   // First, mark for unload all ClassLoaderData referencing a dead class loader.
-  bool unloading_occurred = ClassLoaderDataGraph::do_unloading(is_alive);
+  bool unloading_occurred = ClassLoaderDataGraph::do_unloading(is_alive, clean_alive);
   if (unloading_occurred) {
     dictionary()->do_unloading();
     constraints()->purge_loader_constraints();