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

Comparing jsr166/src/main/java/util/concurrent/ForkJoinWorkerThread.java (file contents):
Revision 1.30 by dl, Fri Sep 17 14:18:00 2010 UTC vs.
Revision 1.31 by jsr166, Mon Sep 20 20:42:37 2010 UTC

# Line 753 | Line 753 | public class ForkJoinWorkerThread extend
753      final boolean isSuspended()   { return (runState & SUSPENDED) != 0; }
754      final boolean isTrimmed()     { return (runState & TRIMMED) != 0; }
755  
756 <    final boolean isTerminating() {
756 >    final boolean isTerminating() {
757          if ((runState & TERMINATING) != 0)
758              return true;
759          if (pool.isAtLeastTerminating()) { // propagate pool state

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines