Question: Write a C program Producer - Consumer as a classical problem of synchronization Step 2. Write a program that solves the producer - consumer problem.
Write a C program

Producer - Consumer as a classical problem of synchronization Step 2. Write a program that solves the producer - consumer problem. You may use the following pseudo code for implementation. //Shared data: semaphore full, empty, mutex; //pool of n buffers, each can hold one item //mutex provides mutual exclusion to the buffer pool //empty and full count the number of empty and full buffers //Initially: full = 0, empty = n, mutex = 1 //Producer thread do { produce next item wait (empty); wait (mutex); add the item to buffer signal (mutex); signal(full); } while (1); //Consumer thread do { wait(full) wait(mutex); remove next item from buffer signal (mutex); signal (empty); consume the item } while (1)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
