All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java8.util.concurrent.atomic.UnsafeAccess Maven / Gradle / Ivy

/*
 * Written by Stefan Zobel and released to the
 * public domain, as explained at
 * http://creativecommons.org/publicdomain/zero/1.0/
 */
package java8.util.concurrent.atomic;

import java.lang.reflect.Field;

import sun.misc.Unsafe;

class UnsafeAccess {

    static final Unsafe unsafe;

    static {
        try {
            Field field = null;
            try {
                field = Unsafe.class.getDeclaredField("theUnsafe");
            } catch (NoSuchFieldException oldAndroid) {
                field = Unsafe.class.getDeclaredField("THE_ONE");
            }
            field.setAccessible(true);
            unsafe = (Unsafe) field.get(null);
        } catch (Exception e) {
            throw new Error(e);
        }
    }

    private UnsafeAccess() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy