mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 09:34:38 +02:00
7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
Rebuild breakpoint cache at gc_epilogue instead of during oops_do Reviewed-by: dcubed, ysr, coleenp
This commit is contained in:
parent
f028816786
commit
272d7eaffc
11 changed files with 50 additions and 14 deletions
|
@ -2268,6 +2268,14 @@ void JvmtiExport::oops_do(OopClosure* f) {
|
|||
JvmtiVMObjectAllocEventCollector::oops_do_for_all_threads(f);
|
||||
}
|
||||
|
||||
void JvmtiExport::weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f) {
|
||||
JvmtiTagMap::weak_oops_do(is_alive, f);
|
||||
}
|
||||
|
||||
void JvmtiExport::gc_epilogue() {
|
||||
JvmtiCurrentBreakpoints::gc_epilogue();
|
||||
}
|
||||
|
||||
// Onload raw monitor transition.
|
||||
void JvmtiExport::transition_pending_onload_raw_monitors() {
|
||||
JvmtiPendingMonitors::transition_raw_monitors();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue