Relates :
|
|
Relates :
|
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.
|