Noticed in a code review.
arguments.cpp:
3489 // Change the default value for flags which have different default values
3490 // when working with older JDKs.
3491 #ifdef LINUX
3492 if (JDK_Version::current().compare_major(6) <= 0 &&
3493 FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
3494 FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
3495 }
3496 #endif // LINUX
the above is for Java 6 and below.
Should check if there is anything else in there like that.
arguments.cpp:
3489 // Change the default value for flags which have different default values
3490 // when working with older JDKs.
3491 #ifdef LINUX
3492 if (JDK_Version::current().compare_major(6) <= 0 &&
3493 FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
3494 FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
3495 }
3496 #endif // LINUX
the above is for Java 6 and below.
Should check if there is anything else in there like that.
- relates to
-
JDK-4341971 libjava should not import sysThreadAvailableStackWithSlack.
-
- Closed
-
-
JDK-8223261 JDK-8189208 followup - remove JDK_GetVersionInfo0 and the supporting code
-
- Resolved
-