Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Part 2. This assignment is (very roughly) based on Programming Project 6.40 in Silbershatz. You will be implementing a Producer-Consumer program with a bounded buffer

image text in transcribedimage text in transcribed

Part 2. This assignment is (very roughly) based on Programming Project 6.40 in Silbershatz. You will be implementing a Producer-Consumer program with a bounded buffer queue of N elements, P producer threads and C consumer threads (N, P and C should be command line arguments to your program, along with three additional parameters, X, Ptime and Ctime, that are described below). Each Producer thread should Enqueue X different numbers onto the queue (spin-waiting for Ptime cycles in between each call to Enqueue). Each Consumer thread should Dequeue P*X/C items from the queue (spin-waiting for Ctime cycles in between each call to Dequeue). The main program should create/initialize the Bounded Buffer Queue, print a timestamp, spawn off C consumer threads & P producer threads, wait for all of the threads to finish and then print off another timestamp & the duration of execution, Step 1: Write high level pseudocode for the Producer and Consumer threads, as well as for the Bounded Buffer Queue (Init, Enqueue, Dequeue). Use semaphores to describe synchronization logic in your pseudocode, and put all of the calls to P/V in the Enqueue/Dequeue implementations. Submit this pseudocode in a file called pandcpseudo.txt. Design a testing strategy for verifying that all of the threads are collectively executing correctly. One possible testing strategy is to have a single atomic counter (i.e. a counter with mutex synchronization so it is guaranteed to produce different numbers) to generate numbers for Producer threads, then have Part 2. This assignment is (very roughly) based on Programming Project 6.40 in Silbershatz. You will be implementing a Producer-Consumer program with a bounded buffer queue of N elements, P producer threads and C consumer threads (N, P and C should be command line arguments to your program, along with three additional parameters, X, Ptime and Ctime, that are described below). Each Producer thread should Enqueue X different numbers onto the queue (spin-waiting for Ptime cycles in between each call to Enqueue). Each Consumer thread should Dequeue P*X/C items from the queue (spin-waiting for Ctime cycles in between each call to Dequeue). The main program should create/initialize the Bounded Buffer Queue, print a timestamp, spawn off C consumer threads & P producer threads, wait for all of the threads to finish and then print off another timestamp & the duration of execution, Step 1: Write high level pseudocode for the Producer and Consumer threads, as well as for the Bounded Buffer Queue (Init, Enqueue, Dequeue). Use semaphores to describe synchronization logic in your pseudocode, and put all of the calls to P/V in the Enqueue/Dequeue implementations. Submit this pseudocode in a file called pandcpseudo.txt. Design a testing strategy for verifying that all of the threads are collectively executing correctly. One possible testing strategy is to have a single atomic counter (i.e. a counter with mutex synchronization so it is guaranteed to produce different numbers) to generate numbers for Producer threads, then have

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

Professional Visual Basic 6 Databases

Authors: Charles Williams

1st Edition

1861002025, 978-1861002020

More Books

Students also viewed these Databases questions

Question

Evaluate three pros and three cons of e-prescribing

Answered: 1 week ago

Question

What is DDL?

Answered: 1 week ago