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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinTask.java210 * NORMAL, CANCELLED, or EXCEPTIONAL. Tasks undergoing blocking
226 private static final int EXCEPTIONAL = -3; field in class:ForkJoinTask
233 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
455 return setCompletion(EXCEPTIONAL);
504 if (status != EXCEPTIONAL)
596 if (s == EXCEPTIONAL && (ex = getThrowableException()) != null)
941 if (s == EXCEPTIONAL && (ex = getThrowableException()) != null)
991 if (s != EXCEPTIONAL)
1053 if (status == EXCEPTIONAL)
H A DFutureTask.java88 * NEW -> COMPLETING -> EXCEPTIONAL
96 private static final int EXCEPTIONAL = 3; field in class:FutureTask
246 UNSAFE.putOrderedInt(this, stateOffset, EXCEPTIONAL); // final state

Completed in 34 milliseconds