mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8267564: JDK-8252971 causes SPECjbb2015 socket exceptions on Windows when MKS is installed
Reviewed-by: alanb
This commit is contained in:
parent
00c88f79b3
commit
61ab4b9d18
3 changed files with 68 additions and 10 deletions
|
@ -160,7 +160,7 @@ class UnixDomainSockets {
|
|||
return n;
|
||||
}
|
||||
|
||||
private static native boolean socketSupported();
|
||||
private static native boolean init();
|
||||
|
||||
private static native int socket0() throws IOException;
|
||||
|
||||
|
@ -176,6 +176,6 @@ class UnixDomainSockets {
|
|||
static {
|
||||
// Load all required native libs
|
||||
IOUtil.load();
|
||||
supported = socketSupported();
|
||||
supported = init();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue