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

Comparing jsr166/src/main/java/util/concurrent/SynchronousQueue.java (file contents):
Revision 1.36 by dl, Sun Jan 4 00:56:48 2004 UTC vs.
Revision 1.37 by dl, Wed Jan 7 01:00:51 2004 UTC

# Line 95 | Line 95 | public class SynchronousQueue<E> extends
95          /**
96           * Implements AQS base acquire to succeed if not in WAITING state
97           */
98 <        protected boolean tryAcquireExclusive(boolean b, int ignore) {
98 >        protected boolean tryAcquireExclusive(int ignore) {
99              return getState() != 0;
100          }
101  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines