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

/libcore/luni/src/main/java/java/util/concurrent/
H A DCountedCompleter.java673 * @param maxTasks the maximum number of tasks to process. If
677 public final void helpComplete(int maxTasks) { argument
679 if (maxTasks > 0 && status >= 0) {
682 helpComplete(wt.workQueue, this, maxTasks);
684 ForkJoinPool.common.externalHelpComplete(this, maxTasks);
H A DForkJoinPool.java1994 * checksum (via return codes from pollAndExecCC). The maxTasks
2000 * @param maxTasks if non-zero, the maximum number of other tasks to run
2004 int maxTasks) {
2020 if (maxTasks != 0 && --maxTasks == 0)
2031 if (h == 1 && maxTasks != 0 && --maxTasks == 0)
2565 final int externalHelpComplete(CountedCompleter<?> task, int maxTasks) { argument
2569 helpComplete(ws[(wl - 1) & r & SQMASK], task, maxTasks) : 0;
2003 helpComplete(WorkQueue w, CountedCompleter<?> task, int maxTasks) argument

Completed in 11 milliseconds