4

Reading various posts on SO on differences between the two (mutex and semaphore) I have come to the following conclusion please correct me if I am wrong.This is mostly related to windows. I understand that critical sections are sections in a code that need to be protected (i.e) cannot be accessed by multiple threads at the same time. Now in order to protect those critical sections Mutexes are used. These mutexes can be either algorithms or data structures. Now mutexes can generally be in two flavours (intra process and inter process) . For intra process in which no calls to the kernel for locking are made we could use Boost Thread synchronization primitives such as lock_guard , unique_lock , shared_lock (single writer/multiple readers) and for inter-process we could use Boost Interprocess semaphore.Now these inter-process mutexes are basically called semaphore. The reason I concluded that was because of this post which states

Semaphore is signaling mechanism (“I am done, you can carry on” kind of signal). For example, if you are listening songs (assume it as one task) on your mobile and at the same time your friend called you, an interrupt will be triggered upon which an interrupt service routine (ISR) will signal the call processing task to wakeup.

Now Boost interprocess states

.. Boost.Interprocess implements similar mechanisms to synchronize threads from different processes.

Please let me know if my understanding of semaphore is in the correct direction.

Now another definition of semaphore which I dont understand comes from here the selected answer states

A semaphore does the same as a mutex but allows x number of threads to enter.

Which correctly describes what a semaphore does ? Does it allow interprocess resource protection or does it allow a specific number of threads to access a resource ? If it does the second one wouldn't it corrupt the resource since multiple threads are accessing it.

2
  • in windows a semaphore is an Event see CreateEvent Commented Nov 25, 2014 at 6:48
  • A good explanation can be found here: koti.mbnet.fi/niclasw/MutexSemaphore.html The bottom line: A mutex is a sempahore with value 1. Basically it doesn't matter wether a resource is accessed by multiple threads or multiple processes. There are differences when accessing memory, but that is another issue. Commented Nov 25, 2014 at 6:53

2 Answers 2

5

A semaphore is a synchronization mechanism build around an integer value. Locking a semaphore (usually called "waiting on semaphore") decreases the value unless it's 0. In that case the thread is stopped until the semaphore value is greater than 0, so it can be properly decreased. Unlocking the semaphore (usually called "posting" or "signalling") increases the value by 1, unconditionally.

Usually when creating a semaphore you need to assign it a starting value. If you set a value bigger than 1, you can have multiple threads enter code "protected" by a semaphore.

Now, a mutex is a binary synchronization primitive. Conceptually it can be compared to a semaphore with an initial value of 1. Only a single thread can enter code protected by a mutex.

I don't know the Windows world, but on Unix semaphore is a OS construct and it can be used to synchronize multiple processes. Pthread mutexes are usually used for coordinating threads within a single process, but there are tricks that allow using mutexes for inter-process synchronization (shared memory block and special ways to create a mutex).

Sign up to request clarification or add additional context in comments.

11 Comments

Thanks for the answer you said "If you set a value bigger than 1, you can have multiple threads enter code "protected" by a semaphore." I came across [this][1] post which provides a sample code of a semaphore. Are you saying that when a protected resource is accessed the count is decremented ? [1]:stackoverflow.com/questions/3928853/… - Who calls lock ? who calls signal ?
Yes. wait has a --count_ and condition_.wait() when the count is 0. signal() has an unconditional ++count_ and condition_.notify_one() to wake up any thread waiting on the conditional variable.
So are you saying that the code that needs to be protected should be in this semaphore class ? Could you give a rough code example on how this class can be used with 3 threads?
No, the protected code is outside the semaphore. Comments don't allow for entering nicely formatted code. Basically, when you want up to three threads to acces a critical section, you create semaphore with initial value of 3 (semaphore s(3);), then you have your code block surrounded by wait and signal: s.wait(); /* protected code */; s.signal().
You can protect against race conditions with a semaphore with the value of 1. However, there are other considerations, like performance or code readability, that make mutexes better for that job.
|
0

Mutex are used in cases where there is a single object instance(or as OP mentioned critical code section access) that needs to be synchronised. Example: Single producer-consumer accessing a queue/memory block. If the producer currently has mutex locked. The consumer will locked out(blocked) from using it until the producer releases it.

Semaphore is used in cases where there are multiple instances of shared resources. So when a new resource is added we do sem_post and when a resource is taken or used sem_wait(decrement) . When the count goes below 0 that shm_wait would be blocked. This is an example in system V.

Coming back the queue access example above for consumer-producer example, there might be 4KB available and it possible for the sake of argument here to divide access atomically to 1KB, lets say. So semaphore can be incremented to 4 when all 4KB is available and to 0 when none are available.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.