Sleeping Barber problem in Process Synchronization

Problem : The analogy is based upon a hypothetical barber shop with one barber. There is a barber shop which has one barber, one barber chair, and n chairs for waiting for customers if there are any to sit on the chair.

  • If there is no customer, then the barber sleeps in his own chair.
  • When a customer arrives, he has to wake up the barber.
  • If there are many customers and the barber is cutting a customer’s hair, then the remaining customers either wait if there are empty chairs in the waiting room or they leave if no chairs are empty.

Solution : The solution to this problem includes three semaphores.First is for the customer which counts the number of customers present in the waiting room (customer in the barber chair is not included because he is not waiting). Second, the barber 0 or 1 is used to tell whether the barber is idle or is working, And the third mutex is used to provide the mutual exclusion which is required for the process to execute. In the solution, the customer has the record of the number of customers waiting in the waiting room if the number of customers is equal to the number of chairs in the waiting room then the upcoming customer leaves the barbershop.

When the barber shows up in the morning, he executes the procedure barber, causing him to block on the semaphore customers because it is initially 0. Then the barber goes to sleep until the first customer comes up.

When a customer arrives, he executes customer procedure the customer acquires the mutex for entering the critical region, if another customer enters thereafter, the second one will not be able to anything until the first one has released the mutex. The customer then checks the chairs in the waiting room if waiting customers are less then the number of chairs then he sits otherwise he leaves and releases the mutex.
If the chair is available then customer sits in the waiting room and increments the variable waiting value and also increases the customer’s semaphore this wakes up the barber if he is sleeping.
At this point, customer and barber are both awake and the barber is ready to give that person a haircut. When the haircut is over, the customer exits the procedure and if there are no customers in waiting room barber sleeps.


Algorithm for Sleeping Barber problem:

Semaphore Customers = 0;

Semaphore Barber = 0;
Mutex Seats = 1;
int FreeSeats = N;
  
Barber {
      while(true) {
            /* waits for a customer (sleeps). */
            down(Customers);
  
            /* mutex to protect the number of available seats.*/
            down(Seats);
  
            /* a chair gets free.*/
            FreeSeats++;
             
            /* bring customer for haircut.*/
            up(Barber);
             
            /* release the mutex on the chair.*/
            up(Seats);
            /* barber is cutting hair.*/
      }
}
  
Customer {
      while(true) {
            /* protects seats so only 1 customer tries to sit
               in a chair if that's the case.*/
            down(Seats); //This line should not be here.
            if(FreeSeats > 0) {
                   
                  /* sitting down.*/
                  FreeSeats--;
                   
                  /* notify the barber. */
                  up(Customers);
                   
                  /* release the lock */
                  up(Seats);
                   
                  /* wait in the waiting room if barber is busy. */
                  down(Barber);
                  // customer is having hair cut
            } else {
                  /* release the lock */
                  up(Seats);
                  // customer leaves
            }
      }

}

Comments

Popular posts from this blog

BASIC ICT SKILLS - CLASS - IX

GREEN SKILLS - I

IT & ITeS (CBSE Class IX Answers)