Searched defs:COMPLETING (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DFutureTask.java81 * transient values of COMPLETING (while outcome is being set) or
88 * NEW -> COMPLETING -> NORMAL
89 * NEW -> COMPLETING -> EXCEPTIONAL
95 private static final int COMPLETING = 1; field in class:FutureTask
191 if (s <= COMPLETING)
204 if (s <= COMPLETING &&
205 (s = awaitDone(true, unit.toNanos(timeout))) <= COMPLETING)
231 if (U.compareAndSwapInt(this, STATE, NEW, COMPLETING)) {
249 if (U.compareAndSwapInt(this, STATE, NEW, COMPLETING)) {
364 // assert state > COMPLETING;
[all...]

Completed in 28 milliseconds