Monitor vs Mutex
问题 I read that mutex is a semaphore with value 1 (binary semaphore) which is used for enforcing mutual exclusion. I read this link Semaphore vs. Monitors - what's the difference? which says that monitor helps in achieving mutual exclusion. Can anyone tell me the difference between mutex and monitor as both are actually doing the same thing 回答1: Since you haven't specified which OS or language/library you are talking about, let me answer in a generic way. Conceptually they are the same. But