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

Comparing jsr166/src/main/java/util/concurrent/CyclicBarrier.java (file contents):
Revision 1.17 by dl, Sun Oct 5 23:00:18 2003 UTC vs.
Revision 1.18 by dl, Sat Oct 11 15:37:31 2003 UTC

# Line 97 | Line 97 | public class CyclicBarrier {
97      /** The lock for guarding barrier entry */
98      private final ReentrantLock lock = new ReentrantLock();
99      /** Condition to wait on until tripped */
100 <    private final Condition trip = lock.newCondition();
100 >    private final ReentrantLock.ConditionObject trip = lock.newCondition();
101      /** The number of parties */
102      private final int parties;
103      /* The command to run when tripped */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines