8074026: Deprecated UseBoundThreads, DefaultThreadPriority and NoYieldsInMicrolock VM options still defined in globals.hpp
Reviewed-by: dholmes, mseledtsov
This commit is contained in:
parent
650fe66a1b
commit
dba5d6fdc5
@ -3020,8 +3020,7 @@ jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
|
|||||||
} else if (match_option(option, "-Xnoagent")) {
|
} else if (match_option(option, "-Xnoagent")) {
|
||||||
// For compatibility with classic. HotSpot refuses to load the old style agent.dll.
|
// For compatibility with classic. HotSpot refuses to load the old style agent.dll.
|
||||||
} else if (match_option(option, "-Xboundthreads")) {
|
} else if (match_option(option, "-Xboundthreads")) {
|
||||||
// Bind user level threads to kernel threads (Solaris only)
|
// Ignore silently for compatibility
|
||||||
FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
|
|
||||||
} else if (match_option(option, "-Xloggc:", &tail)) {
|
} else if (match_option(option, "-Xloggc:", &tail)) {
|
||||||
// Redirect GC output to the file. -Xloggc:<filename>
|
// Redirect GC output to the file. -Xloggc:<filename>
|
||||||
// ostream_init_log(), when called will use this filename
|
// ostream_init_log(), when called will use this filename
|
||||||
|
@ -677,9 +677,6 @@ class CommandLineFlags {
|
|||||||
product(bool, PrintVMQWaitTime, false, \
|
product(bool, PrintVMQWaitTime, false, \
|
||||||
"Print out the waiting time in VM operation queue") \
|
"Print out the waiting time in VM operation queue") \
|
||||||
\
|
\
|
||||||
develop(bool, NoYieldsInMicrolock, false, \
|
|
||||||
"Disable yields in microlock") \
|
|
||||||
\
|
|
||||||
develop(bool, TraceOopMapGeneration, false, \
|
develop(bool, TraceOopMapGeneration, false, \
|
||||||
"Show OopMapGeneration") \
|
"Show OopMapGeneration") \
|
||||||
\
|
\
|
||||||
@ -1157,9 +1154,6 @@ class CommandLineFlags {
|
|||||||
"Convert yield to a sleep of MinSleepInterval to simulate Win32 " \
|
"Convert yield to a sleep of MinSleepInterval to simulate Win32 " \
|
||||||
"behavior") \
|
"behavior") \
|
||||||
\
|
\
|
||||||
product(bool, UseBoundThreads, true, \
|
|
||||||
"Bind user level threads to kernel threads (for Solaris only)") \
|
|
||||||
\
|
|
||||||
develop(bool, UseDetachedThreads, true, \
|
develop(bool, UseDetachedThreads, true, \
|
||||||
"Use detached threads that are recycled upon termination " \
|
"Use detached threads that are recycled upon termination " \
|
||||||
"(for Solaris only)") \
|
"(for Solaris only)") \
|
||||||
@ -3444,10 +3438,6 @@ class CommandLineFlags {
|
|||||||
product(bool, ThreadPriorityVerbose, false, \
|
product(bool, ThreadPriorityVerbose, false, \
|
||||||
"Print priority changes") \
|
"Print priority changes") \
|
||||||
\
|
\
|
||||||
product(intx, DefaultThreadPriority, -1, \
|
|
||||||
"The native priority at which threads run if not elsewhere " \
|
|
||||||
"specified (-1 means no change)") \
|
|
||||||
\
|
|
||||||
product(intx, CompilerThreadPriority, -1, \
|
product(intx, CompilerThreadPriority, -1, \
|
||||||
"The native priority at which compiler threads should run " \
|
"The native priority at which compiler threads should run " \
|
||||||
"(-1 means no change)") \
|
"(-1 means no change)") \
|
||||||
|
Loading…
Reference in New Issue
Block a user