Does anyone know of any comprehensive documentation for sun.misc.Unsafe
?
I'm looking for documentation on Unsafe.putOrderedInt()
. This was all I was able to find.
public native void putOrderedInt(Object o,
long offset,
int x)
Ordered/Lazy version of #putIntVolatile(Object, long, int)
Does anyone know of a better source?