0
votes
2answers
229 views

How does ReentrantLock synchronize?

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 ...
1
vote
1answer
183 views

How can I fix this “not quite synchronized” consumer producer example

I am trying to familiarize myself with the ReentrantLock and ConditionVariable classes. I implemented this Scala code ( without anything "Scala specific" in it ): object Conditioned { var pops ...