Searched refs:ABNORMAL (Results 1 – 1 of 1) sorted by relevance
267 private static final int ABNORMAL = 1 << 16; field in ForkJoinTask319 do {} while ((s = status) >= 0 && !casStatus(s, s |= (DONE | ABNORMAL))); in trySetCancelled()341 if (installed && casStatus(s, s |= (DONE | ABNORMAL | THROWN))) in trySetThrown()421 return ABNORMAL; in awaitDone()457 casStatus(s, s | (DONE | ABNORMAL)); // try to cancel in awaitDone()460 s = ABNORMAL; in awaitDone()583 if ((s & ABNORMAL) != 0 && in getException()604 if (s == ABNORMAL) in reportExecutionException()675 if ((s & ABNORMAL) != 0) in join()692 if ((s & ABNORMAL) != 0) in invoke()[all …]