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

Comparing jsr166/src/main/java/util/concurrent/FairSemaphore.java (file contents):
Revision 1.11 by dl, Sun Aug 31 13:33:13 2003 UTC vs.
Revision 1.12 by dl, Sat Oct 11 15:37:31 2003 UTC

# Line 38 | Line 38 | public class FairSemaphore extends Semap
38       */
39      private static class Node extends ReentrantLock {
40          /** The condition to wait on */
41 <        Condition done = newCondition();
41 >        ReentrantLock.ConditionObject done = newCondition();
42          /** True if interrupted before released */
43          boolean cancelled;
44          /** Number of permits remaining until can release */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines