Search code examples
unsafejava

Where is sun.misc.Unsafe documented?


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?


Solution

  • There is a nice post about it on mishadoff's blog here.

    The class is officially undocumented though.