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

Comparing jsr166/src/main/java/util/concurrent/Phaser.java (file contents):
Revision 1.81 by dl, Sun Sep 13 11:37:53 2015 UTC vs.
Revision 1.82 by jsr166, Sun Sep 13 16:28:14 2015 UTC

# Line 42 | Line 42 | import java.util.concurrent.locks.LockSu
42   *
43   * <ul>
44   *
45 < *   <li> <b>Arrival.</b> Methods {@link #arrive} and
45 > *   <li><b>Arrival.</b> Methods {@link #arrive} and
46   *       {@link #arriveAndDeregister} record arrival.  These methods
47   *       do not block, but return an associated <em>arrival phase
48   *       number</em>; that is, the phase number of the phaser to which
# Line 55 | Line 55 | import java.util.concurrent.locks.LockSu
55   *       flexible than, providing a barrier action to a {@code
56   *       CyclicBarrier}.
57   *
58 < *   <li> <b>Waiting.</b> Method {@link #awaitAdvance} requires an
58 > *   <li><b>Waiting.</b> Method {@link #awaitAdvance} requires an
59   *       argument indicating an arrival phase number, and returns when
60   *       the phaser advances to (or is already at) a different phase.
61   *       Unlike similar constructions using {@code CyclicBarrier},

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines