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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExchanger.java213 private static final int NCPU = Runtime.getRuntime().availableProcessors(); field in class:Exchanger
234 Math.max(0, Math.min(CAPACITY, NCPU / 2) - 1);
249 private static final int SPINS = (NCPU == 1) ? 0 : 2000;
H A DPhaser.java1002 private static final int NCPU = Runtime.getRuntime().availableProcessors(); field in class:Phaser
1015 static final int SPINS_PER_ARRIVAL = (NCPU < 2) ? 1 : 1 << 8;
1037 (lastUnarrived = unarrived) < NCPU)

Completed in 26 milliseconds