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

Comparing jsr166/src/jsr166y/CountedCompleter.java (file contents):
Revision 1.5 by jsr166, Sun Oct 21 05:28:08 2012 UTC vs.
Revision 1.11 by jsr166, Wed Nov 14 18:45:53 2012 UTC

# Line 142 | Line 142 | package jsr166y;
142   *
143   * As a further improvement, notice that the left task need not even
144   * exist.  Instead of creating a new one, we can iterate using the
145 < * original task, and add a pending count for each fork:
145 > * original task, and add a pending count for each fork.
146   *
147   * <pre> {@code
148   * class ForEach<E> ...
# Line 378 | Line 378 | public abstract class CountedCompleter<T
378      }
379  
380      /**
381 +     * Returns the root of the current computation; i.e., this
382 +     * task if it has no completer, else its completer's root.
383 +     *
384 +     * @return the root of the current computation
385 +     */
386 +    public final CountedCompleter<?> getRoot() {
387 +        CountedCompleter<?> a = this, p;
388 +        while ((p = a.completer) != null)
389 +            a = p;
390 +        return a;
391 +    }
392 +
393 +    /**
394       * If the pending count is nonzero, decrements the count;
395       * otherwise invokes {@link #onCompletion} and then similarly
396       * tries to complete this task's completer, if one exists,
# Line 464 | Line 477 | public abstract class CountedCompleter<T
477              throw new Error(e);
478          }
479      }
467
468
480      /**
481       * Returns a sun.misc.Unsafe.  Suitable for use in a 3rd party package.
482       * Replace with a simple call to Unsafe.getUnsafe when integrating

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines