I have looked at the Java API for ReentrantLock and what I can see is that no synchronization is used with the synchronized
keyword. Is it in the below method in AbstractQueuedSynchronizer (that ReentrantLock is refering to when trying to aquire a lock) that synchronizes the object? Since the compareAndSwapInt
is a native method, is the synchronization made at the native level/code?
protected final boolean compareAndSetState(int expect, int update) {
// See below for intrinsics setup to support this
return unsafe.compareAndSwapInt(this, stateOffset, expect, update);
}