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.52 by jsr166, Wed May 18 19:05:07 2005 UTC vs.
Revision 1.53 by dl, Mon Jun 13 18:42:43 2005 UTC

# Line 265 | Line 265 | public class SynchronousQueue<E> extends
265       *  0 for waiting, 1 for ack, -1 for cancelled.
266       */
267      static final class Node extends AbstractQueuedSynchronizer {
268 +        private static final long serialVersionUID = -2631493897867746127L;
269 +
270          /** Synchronization state value representing that node acked */
271          private static final int ACK    =  1;
272          /** Synchronization state value representing that node cancelled */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines