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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DFutureTask.java82 * INTERRUPTING (only while interrupting the runner to satisfy a
91 * NEW -> INTERRUPTING -> INTERRUPTED
99 private static final int INTERRUPTING = 5; field in class:FutureTask
168 mayInterruptIfRunning ? INTERRUPTING : CANCELLED)))
283 if (s >= INTERRUPTING)
320 if (s >= INTERRUPTING)
333 if (s == INTERRUPTING)
334 while (state == INTERRUPTING)

Completed in 37 milliseconds