mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8202415: Incorrect time logged for monitor deflation
Add support for "deflating per-thread idle monitors" log mesgs. Reviewed-by: dholmes, coleenp
This commit is contained in:
parent
bc215804a4
commit
8e4e1a91c0
4 changed files with 30 additions and 9 deletions
|
@ -35,9 +35,10 @@ class ObjectMonitor;
|
|||
class ThreadsList;
|
||||
|
||||
struct DeflateMonitorCounters {
|
||||
int nInuse; // currently associated with objects
|
||||
int nInCirculation; // extant
|
||||
int nScavenged; // reclaimed
|
||||
int nInuse; // currently associated with objects
|
||||
int nInCirculation; // extant
|
||||
int nScavenged; // reclaimed
|
||||
double perThreadTimes; // per-thread scavenge times
|
||||
};
|
||||
|
||||
class ObjectSynchronizer : AllStatic {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue