--- a/src/hotspot/share/runtime/serviceThread.cpp Fri Aug 31 09:10:27 2018 -0400
+++ b/src/hotspot/share/runtime/serviceThread.cpp Fri Aug 31 10:22:04 2018 -0400
@@ -23,8 +23,10 @@
*/
#include "precompiled.hpp"
+#include "classfile/protectionDomainCache.hpp"
#include "classfile/stringTable.hpp"
#include "classfile/symbolTable.hpp"
+#include "classfile/systemDictionary.hpp"
#include "runtime/interfaceSupport.inline.hpp"
#include "runtime/javaCalls.hpp"
#include "runtime/serviceThread.hpp"
@@ -88,6 +90,7 @@
bool stringtable_work = false;
bool symboltable_work = false;
bool resolved_method_table_work = false;
+ bool protection_domain_table_work = false;
JvmtiDeferredEvent jvmti_event;
{
// Need state transition ThreadBlockInVM so that this thread
@@ -107,7 +110,8 @@
!(has_dcmd_notification_event = DCmdFactory::has_pending_jmx_notification()) &&
!(stringtable_work = StringTable::has_work()) &&
!(symboltable_work = SymbolTable::has_work()) &&
- !(resolved_method_table_work = ResolvedMethodTable::has_work())) {
+ !(resolved_method_table_work = ResolvedMethodTable::has_work()) &&
+ !(protection_domain_table_work = SystemDictionary::pd_cache_table()->has_work())) {
// wait until one of the sensors has pending requests, or there is a
// pending JVMTI event or JMX GC notification to post
Service_lock->wait(Mutex::_no_safepoint_check_flag);
@@ -145,6 +149,10 @@
if (resolved_method_table_work) {
ResolvedMethodTable::unlink();
}
+
+ if (protection_domain_table_work) {
+ SystemDictionary::pd_cache_table()->unlink();
+ }
}
}