ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CountDownLatch.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/CountDownLatch.java (file contents):
Revision 1.28 by jsr166, Wed Aug 24 04:58:20 2005 UTC vs.
Revision 1.29 by brian, Fri Sep 2 01:03:08 2005 UTC

# Line 120 | Line 120 | import java.util.concurrent.atomic.*;
120   *
121   * </pre>
122   *
123 + * <p> Memory visibility effects: Actions in a thread prior to calling
124 + * <tt>countDown()</tt> <a
125 + * href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
126 + * actions following a successful return from a corresponding
127 + * <tt>await()</tt> in another thread.
128 + *
129   * @since 1.5
130   * @author Doug Lea
131   */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines