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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DPhaser.java1012 * SPINS_PER_ARRIVAL more times before blocking. The value trades
1015 static final int SPINS_PER_ARRIVAL = (NCPU < 2) ? 1 : 1 << 8; field in class:Phaser
1030 int spins = SPINS_PER_ARRIVAL;
1038 spins += SPINS_PER_ARRIVAL;

Completed in 32 milliseconds