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.25 by dl, Wed Oct 22 12:08:29 2003 UTC vs.
Revision 1.26 by tim, Mon Dec 1 20:26:59 2003 UTC

# Line 371 | Line 371 | public class SynchronousQueue<E> extends
371          if (o == null) throw new NullPointerException();
372  
373          for (;;) {
374            qlock.lock();
374              Node node;
375 +            qlock.lock();
376              try {
377                  node = waitingTakes.deq();
378              } finally {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines