vote up 2 vote down star

In the class ReentrantReadWriteLock is the following curious comment:

transient ThreadLocalHoldCounter readHolds;

Sync() {
    readHolds = new ThreadLocalHoldCounter();
    setState(getState()); // ensures visibility of readHolds
}

what does it mean by "ensures visibility"? The reason I ask is that I have a situation where it looks as though the thread local readHolds is being reset (thread locals are implemented as WeakReferences so that shouldn't happen as long as the containing Sync object is still alive). setState/getState simply alter another instance variable and don't touch readHolds.

flag

67% accept rate
Can you show setState()/getState()? – notnoop Nov 4 at 17:16
There is an example here: fuseyism.com/classpath/doc/… – Dave Griffiths Nov 4 at 17:39

1 Answer

vote up 2 vote down check

The setState(int) method performs an assignment to a volatile variable. This causes any assignments performed by the current thread—including readHolds—to be flushed to "main memory".

Other threads calling getState() read this same volatile variable. Since the variable is volatile, the thread's cache is cleared first, forcing subsequent read operations to go out to main memory, where they will find the most recent value of readHolds.

link|flag
1  
"*any* assignments performed by the current thread—including readHolds—" are flushed. It doesn't matter if the other writes are to a volatile variable; if they come before the write to the volatile variable in the source code, they are flushed along with the volatile variable. This is one of the key changes to the Java Memory Model that occurred in Java 5. – sylvarking Nov 4 at 17:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.