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

Comparing jsr166/src/jsr166y/ForkJoinWorkerThread.java (file contents):
Revision 1.50 by dl, Fri Sep 17 14:24:56 2010 UTC vs.
Revision 1.51 by jsr166, Mon Sep 20 20:42:37 2010 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines