-
Enhancement
-
Resolution: Fixed
-
P3
-
10
-
b21
-Xoss, -Xsqnopause, -Xoptimize, -Xboundthreads and -Xusealtsigs options were obsoleted in JDK 9 and can be removed from JDK 10.
hotspot/src/share/vm/runtime/arguments.cpp:
// -Xoss, -Xsqnopause, -Xoptimize, -Xboundthreads, -Xusealtsigs
} else if (match_option(option, "-Xoss", &tail) ||
match_option(option, "-Xsqnopause") ||
match_option(option, "-Xoptimize") ||
match_option(option, "-Xboundthreads") ||
match_option(option, "-Xusealtsigs")) {
// All these options are deprecated in JDK 9 and will be removed in a future release
char version[256];
JDK_Version::jdk(9).to_string(version, sizeof(version));
warning("Ignoring option %s; support was removed in %s", option->optionString, version);
hotspot/src/share/vm/runtime/arguments.cpp:
// -Xoss, -Xsqnopause, -Xoptimize, -Xboundthreads, -Xusealtsigs
} else if (match_option(option, "-Xoss", &tail) ||
match_option(option, "-Xsqnopause") ||
match_option(option, "-Xoptimize") ||
match_option(option, "-Xboundthreads") ||
match_option(option, "-Xusealtsigs")) {
// All these options are deprecated in JDK 9 and will be removed in a future release
char version[256];
JDK_Version::jdk(9).to_string(version, sizeof(version));
warning("Ignoring option %s; support was removed in %s", option->optionString, version);
- relates to
-
JDK-8078399 Obsolete -Xoss, -Xsqnopause, -Xoptimize and -Xboundthreads options in JDK 9
-
- Resolved
-
-
JDK-8141024 [Solaris] Obsolete UseAltSigs
-
- Closed
-