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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinWorkerThread.java258 int stealCount; field in class:ForkJoinWorkerThread
609 ++stealCount;
H A DForkJoinPool.java494 private volatile long stealCount; field in class:ForkJoinPool
820 for (int sc = w.stealCount; sc != 0;) { // accumulate stealCount
821 long s = stealCount;
823 sc = w.stealCount = 0;
1208 int sc = w.stealCount;
1234 s = stealCount, s + sc))
1760 return stealCount;
2157 (k.getDeclaredField("stealCount"));

Completed in 36 milliseconds