summaryrefslogtreecommitdiff
path: root/src/forkjoin/scala/concurrent/util/Unsafe.java
blob: ef893c94d9795398c0127e22a0e946445f677308 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala.concurrent.util;



import java.lang.reflect.Field;



public final class Unsafe {
    public final static sun.misc.Unsafe instance;
    static {
        try {
            sun.misc.Unsafe found = null;
            for(Field field : sun.misc.Unsafe.class.getDeclaredFields()) {
		if (field.getType() == sun.misc.Unsafe.class) {
		    field.setAccessible(true);
		    found = (sun.misc.Unsafe) field.get(null);
		    break;
		}
            }
            if (found == null) throw new IllegalStateException("Can't find instance of sun.misc.Unsafe");
            else instance = found;
        } catch(Throwable t) {
          throw new ExceptionInInitializerError(t);
        }
    }
}