8140606: Update library code to use internal Unsafe

Reviewed-by: alanb, mchung, psandoz, weijun
This commit is contained in:
Chris Hegarty 2015-11-11 09:19:12 +00:00
parent 6c93228c43
commit bdbc4d15df
120 changed files with 150 additions and 150 deletions

View file

@ -929,7 +929,7 @@ public class ConcurrentLinkedQueue<E> extends AbstractQueue<E>
// Unsafe mechanics
private static final sun.misc.Unsafe U = sun.misc.Unsafe.getUnsafe();
private static final jdk.internal.misc.Unsafe U = jdk.internal.misc.Unsafe.getUnsafe();
private static final long HEAD;
private static final long TAIL;
private static final long ITEM;