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...


The following PThreads code is written for book reservation in a library. Each student checks if the book is free. If it<br>was free they will reserve it with their own ID and the book becomes unavailable to the rest.<br>a. Can you identify the problem with this code? Explain the condition that the code may fail.<br>b. Rewrite the code (just a few lines of code) to solve the problem.<br>//PThreads code here<br>if (book.state==free)<br>( book.state%-reserved;<br>book.borrower%=MyID;<br>

Extracted text: 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;

Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here