mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8136577: Make AbortVMOnException available in product builds
Reviewed-by: coleenp
This commit is contained in:
parent
df9b5759f7
commit
a25ce80e78
9 changed files with 29 additions and 24 deletions
|
@ -2791,7 +2791,7 @@ run:
|
|||
(int)continuation_bci, p2i(THREAD));
|
||||
}
|
||||
// for AbortVMOnException flag
|
||||
NOT_PRODUCT(Exceptions::debug_check_abort(except_oop));
|
||||
Exceptions::debug_check_abort(except_oop);
|
||||
|
||||
// Update profiling data.
|
||||
BI_PROFILE_ALIGN_TO_CURRENT_BCI();
|
||||
|
@ -2807,7 +2807,8 @@ run:
|
|||
p2i(THREAD));
|
||||
}
|
||||
// for AbortVMOnException flag
|
||||
NOT_PRODUCT(Exceptions::debug_check_abort(except_oop));
|
||||
Exceptions::debug_check_abort(except_oop);
|
||||
|
||||
// No handler in this activation, unwind and try again
|
||||
THREAD->set_pending_exception(except_oop(), NULL, 0);
|
||||
goto handle_return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue