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

Comparing jsr166/src/main/java/util/concurrent/FutureTask.java (file contents):
Revision 1.100 by dl, Fri Dec 14 12:29:51 2012 UTC vs.
Revision 1.101 by jsr166, Fri Dec 14 16:33:42 2012 UTC

# Line 143 | Line 143 | public class FutureTask<V> implements Ru
143                  if (t != null)
144                      t.interrupt();
145              } finally { // final state
146 <                UNSAFE.putOrderedInt(this, stateOffset, INTERRUPTED);
146 >                UNSAFE.putOrderedInt(this, stateOffset, INTERRUPTED);
147              }
148          }
149          else if (!UNSAFE.compareAndSwapInt(this, stateOffset, NEW, CANCELLED))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines