mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8268339: Upstream: 8267989: Exceptions thrown during upcalls should be handled
Reviewed-by: psandoz, mcimadamore
This commit is contained in:
parent
1fd81464ec
commit
ab01cb547d
8 changed files with 229 additions and 5 deletions
|
@ -2398,6 +2398,11 @@ public final class System {
|
|||
public long findNative(ClassLoader loader, String entry) {
|
||||
return ClassLoader.findNative(loader, entry);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void exit(int statusCode) {
|
||||
Shutdown.exit(statusCode);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue