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

Comparing jsr166/src/jsr166y/ForkJoinPool.java (file contents):
Revision 1.141 by jsr166, Wed Nov 14 18:45:53 2012 UTC vs.
Revision 1.143 by jsr166, Sun Nov 18 06:28:18 2012 UTC

# Line 104 | Line 104 | import java.util.concurrent.TimeUnit;
104   * an integer greater than zero, {@code threadFactory} -- the class
105   * name of a {@link ForkJoinWorkerThreadFactory}, and {@code
106   * exceptionHandler} -- the class name of a {@link
107 + * java.lang.Thread.UncaughtExceptionHandler
108   * Thread.UncaughtExceptionHandler}. Upon any error in establishing
109   * these settings, default parameters are used.
110   *
# Line 448 | Line 449 | public class ForkJoinPool extends Abstra
449       * perform some subtask processing (see externalHelpJoin and
450       * related methods).  We do not need to record whether these
451       * submissions are to the common pool -- if not, externalHelpJoin
452 <     * returns quicky (at the most helping to signal some common pool
452 >     * returns quickly (at the most helping to signal some common pool
453       * workers). These submitters would otherwise be blocked waiting
454       * for completion, so the extra effort (with liberally sprinkled
455       * task status checks) in inapplicable cases amounts to an odd
# Line 653 | Line 654 | public class ForkJoinPool extends Abstra
654  
655          /**
656           * Pushes a task. Call only by owner in unshared queues.
657 <         * Cases needing resizing or rejection are relyaed to fullPush
657 >         * Cases needing resizing or rejection are relayed to fullPush
658           * (that also handles shared queues).
659           *
660           * @param task the task. Caller must ensure non-null.
# Line 1631 | Line 1632 | public class ForkJoinPool extends Abstra
1632       * termination and possibly shrink pool.
1633       *
1634       * * If already enqueued and none of the above apply, possibly
1635 <     * (with 1/2 probablility) park awaiting signal, else lingering to
1635 >     * (with 1/2 probability) park awaiting signal, else lingering to
1636       * help scan and signal.
1637       *
1638       * @param w the worker (via its WorkQueue)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines