Home » OS Binary Semaphore or Mutex

OS Binary Semaphore or Mutex

by Online Tutorials Library

Binary Semaphore or Mutex

In counting semaphore, Mutual exclusion was not provided because we has the set of processes which required to execute in the critical section simultaneously.

However, Binary Semaphore strictly provides mutual exclusion. Here, instead of having more than 1 slots available in the critical section, we can only have at most 1 process in the critical section. The semaphore can have only two values, 0 or 1.

Let’s see the programming implementation of Binary Semaphore.

You may also like