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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DForkJoinTask.java112 * <p>The primary method for awaiting completion and extracting
115 * waits for completion and report results using {@code Future}
157 * only when completion dependencies are acyclic; that is, the
218 * (2) execution and awaiting completion
248 static final int DONE_MASK = 0xf0000000; // mask out non-completion bits
256 * Marks completion and wakes up threads waiting to join this
259 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
260 * @return completion status on exit
262 private int setCompletion(int completion) { argument
266 if (U.compareAndSwapInt(this, STATUS, s, s | completion)) {
[all...]

Completed in 128 milliseconds