public class LatchStats
extends java.lang.Object
implements java.lang.Cloneable, java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
int |
nAcquireNoWaitSuccessful
Number of times acquireNoWait() was called when the latch was
successfully acquired.
|
int |
nAcquireNoWaitUnsuccessful
Number of unsuccessful acquireNoWait() calls.
|
int |
nAcquireSharedSuccessful
Number of times acquireShared() was called when the latch was
successfully acquired.
|
int |
nAcquiresNoWaiters |
int |
nAcquiresSelfOwned
Number of times acquire() was called when the latch was already owned by
the caller.
|
int |
nAcquiresUpgrade
Number of times acquire() was called with allowNesting=true when the
latch was already owned by the caller for shared access.
|
int |
nAcquiresWithContention
Number of times acquire() was called when the latch was already owned by
the some other thread.
|
int |
nReleases
Numbed of calls to release();
|
| Constructor and Description |
|---|
LatchStats() |
public int nAcquiresNoWaiters
public int nAcquiresSelfOwned
public int nAcquiresUpgrade
public int nAcquiresWithContention
public int nAcquireNoWaitSuccessful
public int nAcquireNoWaitUnsuccessful
public int nAcquireSharedSuccessful
public int nReleases
Copyright (c) 2004,2008 Oracle. All rights reserved.