jdk/src/share/classes/java/util/concurrent/SynchronousQueue.java
changeset 9242 ef138d47df58
parent 8544 225896f7b33c
child 11279 d9dab5ec5044
equal deleted inserted replaced
9241:e77024585d01 9242:ef138d47df58
    29  * file:
    29  * file:
    30  *
    30  *
    31  * Written by Doug Lea, Bill Scherer, and Michael Scott with
    31  * Written by Doug Lea, Bill Scherer, and Michael Scott with
    32  * assistance from members of JCP JSR-166 Expert Group and released to
    32  * assistance from members of JCP JSR-166 Expert Group and released to
    33  * the public domain, as explained at
    33  * the public domain, as explained at
    34  * http://creativecommons.org/licenses/publicdomain
    34  * http://creativecommons.org/publicdomain/zero/1.0/
    35  */
    35  */
    36 
    36 
    37 package java.util.concurrent;
    37 package java.util.concurrent;
    38 import java.util.concurrent.locks.*;
    38 import java.util.concurrent.locks.*;
    39 import java.util.concurrent.atomic.*;
    39 import java.util.concurrent.atomic.*;