Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

a) Remember this readers-writers synchronization problem from BUX and the reference book. do { wait (mutex); read.count++; if (read_count == 1) wait (rw_mutex); signal (mutex);

image text in transcribed

a) Remember this readers-writers synchronization problem from BUX and the reference book. do { wait (mutex); read.count++; if (read_count == 1) wait (rw_mutex); signal (mutex); /* reading is performed */ do { wait (rw_mutex); wait(mutex); read_count--; /* writing is performed */ if (read.count == 0) signal (rw_mutex); signal(rw_mutex); signal (mutex); } while (true); } while (true); a Figure 5.11 The structure of a writer process. Figure 5.12 The structure of a reader process. This solution solves the critical section problem. However, there is starvation issue here for the writer process. If there is a steady stream of reader processes in the ready queue, the writer process may starve and may not be able to write. We hope you can solve this starvation issue by applying one restriction in the code. The restriction is that if the writer was waiting for a reader, then that reader cannot read again before the writer completes writing. If more than one reader were reading when the writer was waiting, this restriction applies to all those readers. Update the reader and writer code to implement this restriction. HINTS: You do not need any additional mutex for this but need to use both mutexes in both programs. You need a flag variable shared among the writer and readers to indicate if the writer is waiting. Call it the writer_waiting flag. You need private variable in the reader process, cali it i_kept_writer_waiting, so that a reader can remember when starting its next iteration that the writer was waiting when it was reading in the previous iteration. a

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_2

Step: 3

blur-text-image_3

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

Databases And Python Programming MySQL MongoDB OOP And Tkinter

Authors: R. PANNEERSELVAM

1st Edition

9357011331, 978-9357011334

More Books

Students also viewed these Databases questions