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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinPool.java246 * ForkJoinWorkerThread to reduce unnecessary calls to unpark.
270 * ForkJoinWorkerThread queues except for the use of
289 * ForkJoinWorkerThread.joinTask tracks joining->stealing
331 * among classes ForkJoinPool, ForkJoinWorkerThread, and
332 * ForkJoinTask. Most fields of ForkJoinWorkerThread maintain
336 * ForkJoinPool and ForkJoinWorkerThread. There is little point
362 * ForkJoinTask and ForkJoinWorkerThread classes, (5) exported
368 * Factory for creating new {@link ForkJoinWorkerThread}s.
370 * for {@code ForkJoinWorkerThread} subclasses that extend base
380 public ForkJoinWorkerThread newThrea
[all...]
H A DForkJoinTask.java197 * to methods in ForkJoinWorkerThread and ForkJoinPool. The
349 Thread t; ForkJoinWorkerThread w; int s; boolean completed;
350 if ((t = Thread.currentThread()) instanceof ForkJoinWorkerThread) {
353 if ((w = (ForkJoinWorkerThread)t).unpushTask(this)) {
622 ((ForkJoinWorkerThread) Thread.currentThread())
936 int s = (Thread.currentThread() instanceof ForkJoinWorkerThread) ?
963 if (t instanceof ForkJoinWorkerThread) {
964 ForkJoinWorkerThread w = (ForkJoinWorkerThread) t;
1032 ((ForkJoinWorkerThread) Threa
[all...]
H A DForkJoinWorkerThread.java55 public class ForkJoinWorkerThread extends Thread { class in inherits:Thread
291 * Creates a ForkJoinWorkerThread operating in the given pool.
296 protected ForkJoinWorkerThread(ForkJoinPool pool) { method in class:ForkJoinWorkerThread
672 ForkJoinWorkerThread[] ws;
681 ForkJoinWorkerThread w = ws[(i++ + r) & (n - 1)];
776 ForkJoinWorkerThread[] ws = pool.workers;
780 outer:for (ForkJoinWorkerThread thread = this;;) {
782 ForkJoinWorkerThread v = ws[thread.stealHint & m];
840 ForkJoinWorkerThread[] ws = pool.workers;
844 ForkJoinWorkerThread
[all...]
/openjdk7/jdk/make/java/java/
H A DFILES_java.gmk309 java/util/concurrent/ForkJoinWorkerThread.java \

Completed in 39 milliseconds