What is the difference between mutex and semaphore?
Answer Posted / henry denial s
"Mutexes are typically used to serialise access to a
section of re-entrant code that cannot be executed
concurrently by more than one thread. A mutex object only
allows one thread into a controlled section, forcing other
threads which attempt to gain access to that section to wait
until the first thread has exited from that section."
A mutex is really a semaphore with value 1
A semaphore restricts the number of simultaneous users of a
shared resource up to a maximum number. Threads can request
access to the resource (decrementing the semaphore), and can
signal that they have finished using the resource
(incrementing the semaphore)."
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain the difference between load-time dynamic linking and run-time dynamic linking?
When would you choose bottom-up methodology?
What are differences between ram and rom?
Are there any problems that the cpu faces? Have any measures been taken to make it more efficient?
Explain what are device drivers used for?
Which is the best page replacement algorithm and Why? How
Explain thrashing.
How can I tell what devices are connected to my usb?
What is Direct Access Method?
What do you know about system model?
Explain about compiler and the functions executed by them?
What are the methods for handling deadlocks?
What is 64 bit platform?
What is a socket?
What is NOS?