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

Comparing jsr166/src/main/java/util/concurrent/ForkJoinTask.java (file contents):
Revision 1.30 by jsr166, Mon Sep 20 20:42:37 2010 UTC vs.
Revision 1.31 by jsr166, Sat Oct 16 16:48:01 2010 UTC

# Line 260 | Line 260 | public abstract class ForkJoinTask<V> im
260          int s;
261          while ((s = status) >= 0) {
262              synchronized (this) {
263 <                if (UNSAFE.compareAndSwapInt(this, statusOffset, s, SIGNAL)){
263 >                if (UNSAFE.compareAndSwapInt(this, statusOffset, s, SIGNAL)) {
264                      boolean interrupted = false;
265                      while (status >= 0) {
266                          try {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines