--- jsr166/src/jsr166e/ForkJoinPool.java 2013/02/05 17:25:09 1.53 +++ jsr166/src/jsr166e/ForkJoinPool.java 2013/02/16 20:50:29 1.57 @@ -907,7 +907,7 @@ public class ForkJoinPool extends Abstra * or any other cancelled task. Returns (true) on any CAS * or consistency check failure so caller can retry. * - * @return false if no progress can be made, else true; + * @return false if no progress can be made, else true */ final boolean tryRemoveAndExec(ForkJoinTask task) { boolean stat = true, removed = false, empty = true; @@ -1131,7 +1131,7 @@ public class ForkJoinPool extends Abstra */ private static final int SEED_INCREMENT = 0x61c88647; - /** + /* * Bits and masks for control variables * * Field ctl is a long packed with: @@ -2185,7 +2185,7 @@ public class ForkJoinPool extends Abstra * producing extra tasks amortizes the uncertainty of progress and * diffusion assumptions. * - * So, users will want to use values larger, but not much larger + * So, users will want to use values larger (but not much larger) * than 1 to both smooth over transient shortages and hedge * against uneven progress; as traded off against the cost of * extra task overhead. We leave the user to pick a threshold @@ -3166,7 +3166,7 @@ public class ForkJoinPool extends Abstra /** * Waits and/or attempts to assist performing tasks indefinitely - * until the {@link #commonPool()} {@link #isQuiescent} + * until the {@link #commonPool()} {@link #isQuiescent}. */ static void quiesceCommonPool() { common.awaitQuiescence(Long.MAX_VALUE, TimeUnit.NANOSECONDS);