A mutex is a programming concept that is frequently used to solve multi-threading problems. My question to the community: What is a mutex and how do you use it?...
Is there any difference between a binary semaphore and mutex or are they essentially the same? 36 s 36
See this page:Â http://www.oracle.com/technetwork/articles/javase/index-140767.html It has a slightly different pattern which is (I think) what you are looking for: try { mutex.acquire(); try { // do something } finally {...