Blocks :
|
|
Duplicate :
|
|
Relates :
|
|
Relates :
|
|
Relates :
|
The AvgMonitorsPerThreadEstimate option does not work quite right when trying to use a value lower than the default of 1024. The _in_use_list_ceiling variable is statically initialized to AvgMonitorsPerThreadEstimate and that happens before cmd line options are processed. So when you try to use -XX:AvgMonitorsPerThreadEstimate=1 you end up with an _in_use_list_ceiling of 1024 + <#-of-JavaThreads>. I see an _in_use_list_ceiling of 1034 in some of the testing that I'm doing for JDK-8226416.
|