Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Another software approach to mutual exclusion is Lamport's bakery algorithm , so called because it is based on the practice in bakeries and other shops

Another software approach to mutual exclusion is Lamport's bakery algorithm, so called because it is based on the practice in bakeries and other shops in which every customer receives a numbered ticket on arrival, allowing each to be served in turn. The algorithm is as follows:

 boolean choosing[n]; 
 int number[n]; 
 while (true) 
 { 
 choosing[i] = true; 
 number[i] = 1 + getmax( number[], n ); 
 choosing[i] = false; 
 for (int j=0; j < n; j++ ) 
 { 
 while (choosing[j]) 
 { }; 
 while ((number[j]!=0) &&(number[j],j)<(number[i],i)) 
 { }; 
 } 
 /* critical section*/; 
 number[i] = 0; 
 /* remainder */; 

}

The arrays choosing and number are initialized to false and 0 respectively. The ith element of each array may be read and written by process i but only read by other processes. The notation (a,b) < (c,d) is defined as

(a < c) or (a = c and b < d)

a. Describe the algorithm in words

b. Show that this algorithm avoids deadlock

c. Show that it enforces mutual exclusion

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions