refs #7565
Change-Id: Ibea9155356882beb74e330ec8ed8b03bee3cbb15
private volatile int readCount = 0; // Must be volatile so we don't have to synchronize getReadCount.
private volatile int writeCount = 0; // Must be volatile so we don't have to synchronize getWriteCount.
private Thread writeOwner = null;
- private int asyncCount = 1;
+ private volatile int asyncCount = 1; // Must be volatile so we don't have to synchronize getAsyncCount.
private TransactionToken transactionToken = null;
void setCombine(boolean a) {
if (null != transactionToken)