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

/libcore/luni/src/main/java/java/util/concurrent/
H A DPhaser.java994 * SPINS_PER_ARRIVAL more times before blocking. The value trades
997 static final int SPINS_PER_ARRIVAL = (NCPU < 2) ? 1 : 1 << 8; field in class:Phaser
1013 int spins = SPINS_PER_ARRIVAL;
1021 spins += SPINS_PER_ARRIVAL;

Completed in 29 milliseconds