mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
Merge
This commit is contained in:
commit
b378f54df3
12 changed files with 137 additions and 23 deletions
|
@ -92,7 +92,16 @@ Java_sun_nio_ch_UnixDomainSockets_socketSupported(JNIEnv *env, jclass cl)
|
|||
return JNI_FALSE;
|
||||
}
|
||||
closesocket(s);
|
||||
return JNI_TRUE;
|
||||
|
||||
/* Check for build 18362 or newer, due to Windows bug described in 8259014 */
|
||||
|
||||
OSVERSIONINFOEXW osvi = { sizeof(osvi), 0, 0, 0, 0, {0}, 0, 0 };
|
||||
DWORDLONG cond_mask = 0;
|
||||
|
||||
VER_SET_CONDITION(cond_mask, VER_BUILDNUMBER, VER_GREATER_EQUAL);
|
||||
osvi.dwBuildNumber = 18362; // Windows 10 (1903) or newer
|
||||
|
||||
return VerifyVersionInfoW(&osvi, VER_BUILDNUMBER, cond_mask) != 0;
|
||||
}
|
||||
|
||||
JNIEXPORT jint JNICALL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue