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

/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java1144 * (int)ctl. The ec field is never accessed alone, but always
1660 for (int j = m + m + 1, ec = w.eventCount;;) {
1667 if (ec < 0)
1680 if ((ec | (e = (int)c)) < 0) // inactive or terminating
1681 return awaitWork(w, c, ec);
1683 long nc = (long)ec | ((c - AC_UNIT) & (AC_MASK|TC_MASK));
1685 w.eventCount = ec | INT_SIGN;
1687 w.eventCount = ec; // back out
1708 * @param ec the worker's eventCount on entry to scan
1710 private final int awaitWork(WorkQueue w, long c, int ec) { argument
[all...]

Completed in 373 milliseconds