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.82 by jsr166, Sun Sep 13 16:28:14 2015 UTC vs.
Revision 1.83 by jsr166, Sun Sep 20 17:03:23 2015 UTC

# Line 301 | Line 301 | public class Phaser {
301      }
302  
303      /**
304 <     * The parent of this phaser, or null if none
304 >     * The parent of this phaser, or null if none.
305       */
306      private final Phaser parent;
307  
# Line 388 | Line 388 | public class Phaser {
388      }
389  
390      /**
391 <     * Implementation of register, bulkRegister
391 >     * Implementation of register, bulkRegister.
392       *
393       * @param registrations number to add to both parties and
394       * unarrived fields. Must be greater than zero.
# Line 922 | Line 922 | public class Phaser {
922      }
923  
924      /**
925 <     * Implementation of toString and string-based error messages
925 >     * Implementation of toString and string-based error messages.
926       */
927      private String stateToString(long s) {
928          return super.toString() +
# Line 1050 | Line 1050 | public class Phaser {
1050      }
1051  
1052      /**
1053 <     * Wait nodes for Treiber stack representing wait queue
1053 >     * Wait nodes for Treiber stack representing wait queue.
1054       */
1055      static final class QNode implements ForkJoinPool.ManagedBlocker {
1056          final Phaser phaser;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines