Is Dalvik\'s memory model the same as Java\'s? I am particularly interested in whether reads and writes of reference and non-long/non-double primit
long
double
The specification says that all operations on 32 bit numbers (the non-double, non-long numbers) are atomic. There is no guarantee that operations on 64 bit numbers are atomic as well.