InterviewSolution
Saved Bookmarks
| 1. |
Semaphore is _ based solution |
|
Answer» Mark this answer as brainlist and thank all my answers and follow meExplanation:Semaphore is SIMPLY a variable which is non-negative and shared between threads. This variable is used to solve the critical section problem and to achieve process synchronization in the multiprocessing environment. Semaphores are of TWO TYPES: BINARY Semaphore – This is also known as MUTEX lock. |
|