Is there any difference between binary semaphore and mutex or they are essentialy same?
|
7
|
|||
|
|
|
Mutex can be released only by thread that had acquired it, while you can signal semaphore from any other thread (or process), so semaphores are more suitable for some synchronization problems like producer-consumer. One Windows binary semaphores are more like event objects then mutants. |
||
|
|
|
|
The Toilet example is an enjoyable analogy:
|
||||||
|
|
|
They are NOT the same thing. While both types of semaphores have a full/empty state, their usage is very different. Also, a Mutex semaphore is "owned" by the task that takes it. A binary semaphore is not. Here are a few examples: Mutex
Thread A Thread B
Take Mutex
access data
... Take Mutex
Binary Semaphore
Note that with a binary semaphore, it is OK for B to take the semaphore and A to give it. This could not happen with a Mutex. If B takes the mutex and A attempts to give it, A will get an error. |
||
|
|
|
|
There synchronization semantics are very different:
As such one can see a mutexe as a token passed from task to tasks and a semaphore as traffic red-light (it signals someone that it can proceed). |
||
|
|
|
|
At a theoretical level, they are no different semantically. You can implement a mutex using semaphores or vice versa (see here for an example). In practice, the implementation is different and they offer slightly different services. The practical difference (in terms of the system services surrounding them) is that the implementation of a mutex is aimed at being a more lightweight synchronisation mechanism. In oracle-speak, mutexes are known as latches and semaphores are known as waits. At the lowest level, they use some sort of atomic test and set mechanism. This reads the current value of a memory location, computes some sort of conditional and writes out a value at that location in a single instruction that cannot be interrupted. This means that you can acquire a mutex and test to see if anyone else had it before you. A typical mutex implementation has a process or thread executing the test-and-set instruction and evaluating whether anything else had set the mutex. A key point here is that there is no interaction with the scheduler, so we have no idea (and don't care) who has set the lock. Then we either give up our time slice and attempt it again when the task is re-scheduled or execute a spin-lock. A spin lock is an algorithm like:
When we have finished executing our protected code (known as a critical section) we just set the mutex value to zero or whatever means 'clear.' If multiple tasks are attempting to acquire the mutex they the next task that happens to be scheduled after the mutex is released will get access to the resource. Typically you would use mutexes to control a synchronised resource where exclusive access is only needed for very short periods of time, normally to make an update to a shared data structure. A semaphore is a synchronised data structure (typically using a mutex) that has a count and some system call wrappers that interact with the scheduler in a bit more depth than the mutex libraries would. Semaphores are incremented and decremented and used to block tasks until something else is ready. See Producer/Consumer Problem for a simple example of this. Semaphores are initialised to some value - a binary semaphore is just a special case where the semaphore is initialised to 1. Posting to a semaphore has the effect of waking up a waiting process. A basic semaphore algorithm looks like:
In the case of a binary semaphore the main practical difference between the two is the nature of the system services surrounding the actual data structure. EDIT: As evan has rightly pointed out, spinlocks will slow down a single processor machine. You would only use a spinlock on a multi-processor box because on a single processor the process holding the mutex will never reset it while another task is running. Spinlocks are only useful on multi-processor architectures. |
||||
|
|
|
The answer may depend on the target OS. For example, at least one RTOS implementation I'm familiar with will allow multiple sequential "get" operations against a single OS mutex, so long as they're all from within the same thread context. The multiple gets must be replaced by an equal number of puts before another thread will be allowed to get the mutex. This differs from binary semaphores, for which only a single get is allowed at a time, regardless of thread contexts. The idea behind this type of mutex is that you protect an object by only allowing a single context to modify the data at a time. Even if the thread gets the mutex and then calls a function that further modifies the object (and gets/puts the protector mutex around its own operations), the operations should still be safe because they're all happening under a single thread.
Of course, when using this feature, you must be certain that all accesses within a single thread really are safe! I'm not sure how common this approach is, or whether it applies outside of the systems with which I'm familiar. For an example of this kind of mutex, see the ThreadX RTOS. |
||
|
|
|
|
Mutex work on blocking critical region, But Semaphore work on count. |
||
|
|
|
|
On Windows, there are two differences between mutexes and binary semaphores:
|
|||
|
|
|
|
Nice articles on the topic: (part 1 and 2 can be reached through this, I am new user, can post more than one link) From part 2:
|
||
|
|
