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.65 by jsr166, Thu Apr 14 01:17:58 2011 UTC vs.
Revision 1.66 by jsr166, Wed Jun 1 21:04:30 2011 UTC

# Line 331 | Line 331 | public class ForkJoinWorkerThread extend
331       */
332      protected void onStart() {
333          queue = new ForkJoinTask<?>[INITIAL_QUEUE_CAPACITY];
334 <        int r = pool.workerSeedGenerator.nextInt();
334 >        int r = ForkJoinPool.workerSeedGenerator.nextInt();
335          seed = (r == 0) ? 1 : r; //  must be nonzero
336      }
337  
# Line 955 | Line 955 | public class ForkJoinWorkerThread extend
955          int s;
956          try {
957              UNSAFE = getUnsafe();
958 <            Class a = ForkJoinTask[].class;
958 >            Class<?> a = ForkJoinTask[].class;
959              ABASE = UNSAFE.arrayBaseOffset(a);
960              s = UNSAFE.arrayIndexScale(a);
961          } catch (Exception e) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines