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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java376 private static final int COUNT_BITS = Integer.SIZE - 3; field in class:ThreadPoolExecutor
377 private static final int CAPACITY = (1 << COUNT_BITS) - 1;
380 private static final int RUNNING = -1 << COUNT_BITS;
381 private static final int SHUTDOWN = 0 << COUNT_BITS;
382 private static final int STOP = 1 << COUNT_BITS;
383 private static final int TIDYING = 2 << COUNT_BITS;
384 private static final int TERMINATED = 3 << COUNT_BITS;

Completed in 177 milliseconds