mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
Merge
This commit is contained in:
commit
dc8b57fb57
110 changed files with 2380 additions and 975 deletions
|
@ -307,6 +307,9 @@ static ObsoleteFlag obsolete_jvm_flags[] = {
|
|||
JDK_Version::jdk_update(7, 2), JDK_Version::jdk(8) },
|
||||
#endif // PRODUCT
|
||||
{ "UseVMInterruptibleIO", JDK_Version::jdk(8), JDK_Version::jdk(9) },
|
||||
{ "UseBoundThreads", JDK_Version::jdk(9), JDK_Version::jdk(10) },
|
||||
{ "DefaultThreadPriority", JDK_Version::jdk(9), JDK_Version::jdk(10) },
|
||||
{ "NoYieldsInMicrolock", JDK_Version::jdk(9), JDK_Version::jdk(10) },
|
||||
{ NULL, JDK_Version(0), JDK_Version(0) }
|
||||
};
|
||||
|
||||
|
@ -2078,17 +2081,6 @@ bool Arguments::check_vm_args_consistency() {
|
|||
// Note: Needs platform-dependent factoring.
|
||||
bool status = true;
|
||||
|
||||
// Allow both -XX:-UseStackBanging and -XX:-UseBoundThreads in non-product
|
||||
// builds so the cost of stack banging can be measured.
|
||||
#if (defined(PRODUCT) && defined(SOLARIS))
|
||||
if (!UseBoundThreads && !UseStackBanging) {
|
||||
jio_fprintf(defaultStream::error_stream(),
|
||||
"-UseStackBanging conflicts with -UseBoundThreads\n");
|
||||
|
||||
status = false;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (TLABRefillWasteFraction == 0) {
|
||||
jio_fprintf(defaultStream::error_stream(),
|
||||
"TLABRefillWasteFraction should be a denominator, "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue