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
How do I check my filesystem?
How are data structures handled by ntfs?
Does chkdsk delete files?
What is a safe state and a safe sequence?
Which one you will use to implement critical section?
What does the 400 mhz signify in a ram specification?
What is micro kernel approach and site its advantages?
How will you check if your R3 system is 32bit or 64bit?
What is the largest ram?
Tell me if you know how are the wait/signal operations for monitor different from those for semaphores?
What does echo $$ do?
Explain the concept of the distributed systems?
Who does the memory management in operating system?
What is sdram?
Can bad sectors cause blue screen?