Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8082671 | emb-9 | Dmitry Dmitriev | P3 | Resolved | Fixed | team |
Fix for JDK-8038473 "Remove support for old T1 libthread" deprecate UseBoundThreads, DefaultThreadPriority and NoYieldsInMicrolock VM options. But these options are still defined in hotspot/src/share/vm/runtime/globals.hpp file and accepted by JVM(instead of printing warning about deprecation).
Also, UseBoundThreads option is used in Arguments::parse_each_vm_init_arg function in hotspot/src/share/vm/runtime/arguments.cpp:
} else if (match_option(option, "-Xboundthreads")) {
// Bind user level threads to kernel threads (Solaris only)
FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
So, possible, "-Xboundthreads" also can be deprecated because it used only to set deprecated "UseBoundThreads" to true.
Also, UseBoundThreads option is used in Arguments::parse_each_vm_init_arg function in hotspot/src/share/vm/runtime/arguments.cpp:
} else if (match_option(option, "-Xboundthreads")) {
// Bind user level threads to kernel threads (Solaris only)
FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
So, possible, "-Xboundthreads" also can be deprecated because it used only to set deprecated "UseBoundThreads" to true.
- backported by
-
JDK-8082671 Deprecated UseBoundThreads, DefaultThreadPriority and NoYieldsInMicrolock VM options still defined in globals.hpp
-
- Resolved
-
- is blocked by
-
JDK-8073989 Deprecated integer options are considered as invalid instead of deprecated in Java 9
-
- Resolved
-
- relates to
-
JDK-8038473 Remove support for old T1 libthread
-
- Closed
-