Question: The following PThreads code is written for book reservation in a library. Each student checks if the book is free. If it was free they

The following PThreads code is written for book reservation in a library. Each student checks if the book is free. If it was free they will reserve it with their own ID and the book becomes unavailable to the rest.

a. Can you identify the problem with this code? Explain the condition that the code may fail.

b. Rewrite the code (just a few lines of code) to solve the problem.

//PThreads code here

if (book.state==free)

{ book.state=reserved;

book.borrower=MyID;

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!