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

Comparing jsr166/src/main/java/util/concurrent/ForkJoinPool.java (file contents):
Revision 1.46 by dl, Sun Nov 21 20:42:05 2010 UTC vs.
Revision 1.47 by jsr166, Mon Nov 22 20:10:51 2010 UTC

# Line 586 | Line 586 | public class ForkJoinPool extends Abstra
586      // are usually manually inlined by callers
587  
588      /**
589 <     * Increments running count part of workerCounts
589 >     * Increments running count part of workerCounts.
590       */
591      final void incrementRunningCount() {
592          int c;
# Line 596 | Line 596 | public class ForkJoinPool extends Abstra
596      }
597  
598      /**
599 <     * Tries to increment running count part of workerCounts
599 >     * Tries to increment running count part of workerCounts.
600       */
601      final boolean tryIncrementRunningCount() {
602          int c;
# Line 606 | Line 606 | public class ForkJoinPool extends Abstra
606      }
607  
608      /**
609 <     * Tries to decrement running count unless already zero
609 >     * Tries to decrement running count unless already zero.
610       */
611      final boolean tryDecrementRunningCount() {
612          int wc = workerCounts;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines