aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/classfile/systemDictionary.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/vm/classfile/systemDictionary.cpp')
-rw-r--r--src/share/vm/classfile/systemDictionary.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/share/vm/classfile/systemDictionary.cpp b/src/share/vm/classfile/systemDictionary.cpp
index 1591b795f..88ccc91b7 100644
--- a/src/share/vm/classfile/systemDictionary.cpp
+++ b/src/share/vm/classfile/systemDictionary.cpp
@@ -2131,6 +2131,12 @@ void SystemDictionary::update_dictionary(int d_index, unsigned int d_hash,
}
}
+ // Assign a classid if one has not already been assigned. The
+ // counter does not need to be atomically incremented since this
+ // is only done while holding the SystemDictionary_lock.
+ // All loaded classes get a unique ID.
+ TRACE_INIT_ID(k);
+
// Check for a placeholder. If there, remove it and make a
// new system dictionary entry.
placeholders()->find_and_remove(p_index, p_hash, name, class_loader, THREAD);