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.58 by dl, Mon Sep 6 11:55:39 2010 UTC vs.
Revision 1.60 by jsr166, Tue Sep 7 23:17:10 2010 UTC

# Line 153 | Line 153 | public abstract class ForkJoinTask<V> im
153       * single int to minimize footprint and to ensure atomicity (via
154       * CAS).  Status is initially zero, and takes on nonnegative
155       * values until completed, upon which status holds value
156 <     * NORMAL. CANCELLED, or EXCEPTIONAL. Tasks undergoing blocking
156 >     * NORMAL, CANCELLED, or EXCEPTIONAL. Tasks undergoing blocking
157       * waits by other threads have the SIGNAL bit set.  Completion of
158       * a stolen task with SIGNAL set awakens any waiters via
159       * notifyAll. Even though suboptimal for some purposes, we use
# Line 206 | Line 206 | public abstract class ForkJoinTask<V> im
206  
207      /**
208       * Records exception and sets exceptional completion.
209 <     *
209 >     *
210       * @return status on exit
211       */
212      private void setExceptionalCompletion(Throwable rex) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines