Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is sun.misc.Unsafe documented? [closed]

Tags:

java

unsafe

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?

like image 223
James Raitsev Avatar asked May 29 '13 16:05

James Raitsev


1 Answers

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

The class is officially undocumented though.

like image 71
mwerschy Avatar answered Sep 20 '22 04:09

mwerschy