Saved Bookmarks
| 1. |
Atomic operations permissible on semaphores are? |
|
Answer» No other PROCESS can access thesemaphore when P or V are executing. This is implemented with atomichardware and code. An atomic operation is indivisible, that is, it can be considered to execute as a unit. If there is only one COUNT of a resource, a binary SEMAPHORE is used which can only have the VALUES of 0 or 1. |
|