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

/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java292 * Field "runState" holds lifetime status, atomically and
301 * bootstrapping use of field runState, and locking a private
459 * tryTerminate to atomically set a runState bit. The calling
1454 // runState bits: SHUTDOWN must be negative, others arbitrary powers of two
1462 volatile int runState; field in class:ForkJoinPool
1476 if (runState == 0) { // bootstrap by locking static field
1488 if (runState == 0) {
1491 runState = STARTED;
1495 if (checkTermination && runState < 0) {
1774 else if ((runState
[all...]

Completed in 22 milliseconds