Searched refs:INTERRUPTING (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DFutureTask.java81 * INTERRUPTING (only while interrupting the runner to satisfy a
90 * NEW -> INTERRUPTING -> INTERRUPTED
98 private static final int INTERRUPTING = 5; field in class:FutureTask
168 if (!UNSAFE.compareAndSwapInt(this, stateOffset, NEW, INTERRUPTING))
279 if (s >= INTERRUPTING)
317 if (s >= INTERRUPTING)
330 if (s == INTERRUPTING)
331 while (state == INTERRUPTING)

Completed in 24 milliseconds