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:
Daniel D. Daugherty 2018-11-27 18:35:16 -05:00
parent bc215804a4
commit 8e4e1a91c0
4 changed files with 30 additions and 9 deletions

View file

@ -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 {