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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinTask.java107 * <p>The primary method for awaiting completion and extracting
110 * waits for completion and report results using {@code Future}
150 * only when completion dependencies are acyclic; that is, the
199 * status maintenance (2) execution and awaiting completion (3)
230 * Marks completion and wakes up threads waiting to join this task,
233 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
234 * @return completion status on exit
236 private int setCompletion(int completion) { argument
240 if (UNSAFE.compareAndSwapInt(this, statusOffset, s, completion)) {
243 return completion;
[all...]

Completed in 33 milliseconds