-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 26
-
Component/s: hotspot
-
master
After JDK-8370943, the following precondition is too strong.
assert(SafepointSynchronize::is_at_safepoint(), "precondition");
assert(Thread::current()->is_VM_thread(), "precondition");
One can check Heap_lock instead.
assert(SafepointSynchronize::is_at_safepoint(), "precondition");
assert(Thread::current()->is_VM_thread(), "precondition");
One can check Heap_lock instead.
- caused by
-
JDK-8370943 Support heap expansion during startup in Serial and Parallel
-
- Resolved
-
- relates to
-
JDK-8365932 Implementation of JEP 516: Ahead-of-Time Object Caching with Any GC
-
- Resolved
-
- links to
-
Commit(master)
openjdk/jdk/167c952b
-
Review(master)
openjdk/jdk/28162