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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentSkipListMap.java (file contents):
Revision 1.141 by jsr166, Sun Jan 4 09:15:11 2015 UTC vs.
Revision 1.142 by dl, Mon Feb 23 19:47:31 2015 UTC

# Line 3545 | Line 3545 | public class ConcurrentSkipListMap<K,V>
3545      // Unsafe mechanics
3546      private static final sun.misc.Unsafe U = sun.misc.Unsafe.getUnsafe();
3547      private static final long HEAD;
3548    private static final long SECONDARY;
3548      static {
3549          try {
3550              HEAD = U.objectFieldOffset
3551                  (ConcurrentSkipListMap.class.getDeclaredField("head"));
3553
3554            SECONDARY = U.objectFieldOffset
3555                (Thread.class.getDeclaredField("threadLocalRandomSecondarySeed"));
3552          } catch (ReflectiveOperationException e) {
3553              throw new Error(e);
3554          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines