What is a binary semaphore? What is its use?
Answer Posted / ashaa
The semaphore discussed previously is called a counting sempahore. Another kind of semaphore is the binary semaphore; This is exactly like a counting semaphore except for the following:
the semaphore value is restricted to 0 and 1.
P succeeds only when the semaphore value is 1.
V does not change the semaphore value when it is 1. (Thus successive Vs are lost.)
Binary semaphores are sometimes easier to implement. than counting semaphores. We will not describe implementations of binary semaphores in terms of low-level or OS constructs (these would be similar to the implementations of counting semaphores). Instead we show how counting semaphores can be implemented by binary semaphores, which demonstrates that binary sempahores are as powerful as counting semaphores.
Convention: Unless otherwise mentioned, a semaphore is to be interpreted as a counting semaphore.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain Round Robin.
How can I boot from usb?
What is raid? What are the different raid levels?
Describe system calls and its type
How do I delete an operating system?
Where is program files located?
What do you call a bootable disk that contains a full usable os?
What is feram?
What is time slice?
How many types of fragmentation occur in operating system?
Discuss some of the reasons for implementing process migration ?
What is a long term scheduler & short term schedulers?
How does the system detect thrashing? Once it detects thrashing, what can the system do to eliminate this problem?
Where is the root directory?
What is drawback of mvt?