ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166y/ForkJoinTask.java
(Generate patch)

Comparing jsr166/src/jsr166y/ForkJoinTask.java (file contents):
Revision 1.93 by dl, Wed Nov 14 17:20:37 2012 UTC vs.
Revision 1.94 by dl, Mon Nov 19 18:12:42 2012 UTC

# Line 33 | Line 33 | import java.lang.reflect.Constructor;
33   * <p>A "main" {@code ForkJoinTask} begins execution when it is
34   * explicitly submitted to a {@link ForkJoinPool}, or, if not already
35   * engaged in a ForkJoin computation, commenced in the {@link
36 < * ForkJoinPool#commonPool} via {@link #fork}, {@link #invoke}, or
36 > * ForkJoinPool#commonPool()} via {@link #fork}, {@link #invoke}, or
37   * related methods.  Once started, it will usually in turn start other
38   * subtasks.  As indicated by the name of this class, many programs
39   * using {@code ForkJoinTask} employ only methods {@link #fork} and
# Line 635 | Line 635 | public abstract class ForkJoinTask<V> im
635      /**
636       * Arranges to asynchronously execute this task in the pool the
637       * current task is running in, if applicable, or using the {@link
638 <     * ForkJoinPool#commonPool} if not {@link #inForkJoinPool}.  While
638 >     * ForkJoinPool#commonPool()} if not {@link #inForkJoinPool}.  While
639       * it is not necessarily enforced, it is a usage error to fork a
640       * task more than once unless it has completed and been
641       * reinitialized.  Subsequent modifications to the state of this

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines