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.63 by dl, Sat Sep 18 12:10:21 2010 UTC vs.
Revision 1.64 by jsr166, Mon Sep 20 20:42:37 2010 UTC

# Line 661 | Line 661 | public abstract class ForkJoinTask<V> im
661          else {
662              while ((s = status) >= 0) {
663                  synchronized (this) { // interruptible form of awaitDone
664 <                    if (UNSAFE.compareAndSwapInt(this, statusOffset,
664 >                    if (UNSAFE.compareAndSwapInt(this, statusOffset,
665                                                   s, SIGNAL)) {
666                          while (status >= 0)
667                              wait();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines